From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 15708 invoked from network); 24 Jan 2021 05:49:51 -0000 Received: from 1ess.inri.net (216.126.196.35) by inbox.vuxu.org with ESMTPUTF8; 24 Jan 2021 05:49:51 -0000 Received: from mimir.eigenstate.org ([206.124.132.107]) by 1ess; Sun Jan 24 00:39:58 -0500 2021 Received: from abbatoir.fios-router.home (pool-74-101-2-6.nycmny.fios.verizon.net [74.101.2.6]) by mimir.eigenstate.org (OpenSMTPD) with ESMTPSA id c8e48e59 (TLSv1.2:ECDHE-RSA-AES256-SHA:256:NO) for <9front@9front.org>; Sat, 23 Jan 2021 21:39:46 -0800 (PST) Message-ID: <2972FC0A78807CF02527546DE9C393BB@eigenstate.org> To: 9front@9front.org Date: Sat, 23 Jan 2021 21:39:45 -0800 From: ori@eigenstate.org In-Reply-To: <529454CADDAE1D36B213D73DD8D4FC36@arrow.hsd1.ca.comcast.net> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: scale-out standard blockchain grid Subject: Re: [9front] marshal(1): -d is also passed through to the send command Reply-To: 9front@9front.org Precedence: bulk Quoth Michael Forney : > diff -r b4e0e1c28d06 -r 469d3301c774 sys/man/1/marshal > --- a/sys/man/1/marshal Sat Jan 23 13:15:17 2021 -0800 > +++ b/sys/man/1/marshal Sat Jan 23 13:38:19 2021 -0800 > @@ -13,7 +13,7 @@ > .B -B > .I copyaddr > ] [ > -.B -Fr#xn > +.B -Fr#xnd > ] [ > .B -S > .I saveto > @@ -115,7 +115,7 @@ > .BI -n > intentionally no standard input > .TP > -.B -#xr > +.B -#xrd > are all passed as command line options to the > .I send > that > diff -r b4e0e1c28d06 -r 469d3301c774 sys/src/cmd/upas/marshal/marshal.c > --- a/sys/src/cmd/upas/marshal/marshal.c Sat Jan 23 13:15:17 2021 -0800 > +++ b/sys/src/cmd/upas/marshal/marshal.c Sat Jan 23 13:38:19 2021 -0800 > @@ -155,7 +155,7 @@ > void > usage(void) > { > - fprint(2, "usage: %s [-Fr#xn] [-s subject] [-C ccrecipient] [-t type]" > + fprint(2, "usage: %s [-Fr#xnd] [-s subject] [-C ccrecipient] [-t type]" > " [-aA attachment] [-p[es]] [-R replymsg] -8 | recipient-list\n", > argv0); > exits("usage"); > Debug flags usually aren't documented, and that's also true here: there's no description of '-d' in either the marshal or send manpages. Just listing it without an explanation of its function is going to be confusing. I'd rather not commit this. Thanks, though!