Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 23 May 2019 07:40:26 -0700 (PDT)
From:      "Rodney W. Grimes" <freebsd@gndrsh.dnsmgr.net>
To:        Konstantin Belousov <kib@freebsd.org>
Cc:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   Re: svn commit: r348167 - in head/usr.bin: . posixshmcontrol
Message-ID:  <201905231440.x4NEeQ7L090577@gndrsh.dnsmgr.net>
In-Reply-To: <201905231433.x4NEX2QF042023@repo.freebsd.org>

next in thread | previous in thread | raw e-mail | index | archive | help
> Author: kib
> Date: Thu May 23 14:33:01 2019
> New Revision: 348167
> URL: https://svnweb.freebsd.org/changeset/base/348167
> 
> Log:
>   Add posixshmcontrol(1), an utility to manipulate posix shared memory segments.
>   
>   See usage for the command line structure.  Man page will come shortly.
>   
>   Reviewed by:	jilles, tmunro
>   Sponsored by:	The FreeBSD Foundation
>   MFC after:	1 week
>   Differential revision:	https://reviews.freebsd.org/D20258
> 
> Added:
>   head/usr.bin/posixshmcontrol/
>   head/usr.bin/posixshmcontrol/Makefile   (contents, props changed)
>   head/usr.bin/posixshmcontrol/posixshmcontrol.c   (contents, props changed)
> Modified:
>   head/usr.bin/Makefile

Can someone extract the usage: and slap a template man page
up so that apropos can at least locate this command?

Thanks,
Rod


> +	fprintf(stderr, "Usage:\n"
> +	    "posixshmcontrol create [-m <mode>] <path> ...\n"
> +	    "posixshmcontrol rm <path> ...\n"
> +	    "posixshmcontrol ls [-h] [-n]\n"
> +	    "posixshmcontrol dump <path> ...\n"
> +	    "posixshmcontrol stat [-h] [-n] <path> ...\n"
> +	    "posixshmcontrol truncate [-s <newlen>] <path> ...\n");

-- 
Rod Grimes                                                 rgrimes@freebsd.org



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905231440.x4NEeQ7L090577>