posixshmcontrol: add an undocumented alias 'list' for the 'ls' command.

Sponsored by:	The FreeBSD Foundation
MFC after:	3 days
This commit is contained in:
kib 2020-03-09 23:08:24 +00:00
parent 0a68a3196e
commit 04eab4e02f

View File

@ -446,6 +446,7 @@ struct opmode {
static const struct opmode opmodes[] = {
{ .cmd = "create", .impl = create_shm},
{ .cmd = "rm", .impl = delete_shm, },
{ .cmd = "list", .impl = list_shm },
{ .cmd = "ls", .impl = list_shm },
{ .cmd = "dump", .impl = read_shm, },
{ .cmd = "stat", .impl = stat_shm, },