From unknown Tue Jun 24 17:23:38 2025 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 X-Mailer: MIME-tools 5.509 (Entity 5.509) Content-Type: text/plain; charset=utf-8 From: bug#32900 <32900@debbugs.gnu.org> To: bug#32900 <32900@debbugs.gnu.org> Subject: Status: [PATCH] env.x: Fix minor mistakes in the manual Reply-To: bug#32900 <32900@debbugs.gnu.org> Date: Wed, 25 Jun 2025 00:23:38 +0000 retitle 32900 [PATCH] env.x: Fix minor mistakes in the manual reassign 32900 coreutils submitter 32900 Bjarni Ingi Gislason severity 32900 normal tag 32900 patch thanks From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 01 17:53:58 2018 Received: (at submit) by debbugs.gnu.org; 1 Oct 2018 21:53:58 +0000 Received: from localhost ([127.0.0.1]:33572 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g768c-0008L3-GM for submit@debbugs.gnu.org; Mon, 01 Oct 2018 17:53:58 -0400 Received: from eggs.gnu.org ([208.118.235.92]:48616) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g768a-0008Kk-FQ for submit@debbugs.gnu.org; Mon, 01 Oct 2018 17:53:57 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g768T-0004Ww-Oq for submit@debbugs.gnu.org; Mon, 01 Oct 2018 17:53:50 -0400 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on eggs.gnu.org X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=disabled version=3.3.2 Received: from lists.gnu.org ([2001:4830:134:3::11]:40733) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g768T-0004Wb-IZ for submit@debbugs.gnu.org; Mon, 01 Oct 2018 17:53:49 -0400 Received: from eggs.gnu.org ([2001:4830:134:3::10]:57892) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1g768S-0002mv-Sd for bug-coreutils@gnu.org; Mon, 01 Oct 2018 17:53:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1g75ve-0000q7-Bz for bug-coreutils@gnu.org; Mon, 01 Oct 2018 17:40:35 -0400 Received: from inpost.hi.is ([2a00:c88:4000:1650::165:62]:53602) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1g75vd-0000nd-VK for bug-coreutils@gnu.org; Mon, 01 Oct 2018 17:40:34 -0400 Received: from hekla.rhi.hi.is (hekla.rhi.hi.is [IPv6:2a00:c88:4000:1650::165:2]) by inpost.hi.is (8.14.7/8.14.7) with ESMTP id w91LeRPt008347 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO) for ; Mon, 1 Oct 2018 21:40:27 GMT DKIM-Filter: OpenDKIM Filter v2.11.0 inpost.hi.is w91LeRPt008347 Received: from hekla.rhi.hi.is (localhost [127.0.0.1]) by hekla.rhi.hi.is (8.14.4/8.14.4) with ESMTP id w91LeRpS000827 for ; Mon, 1 Oct 2018 21:40:27 GMT Received: (from bjarniig@localhost) by hekla.rhi.hi.is (8.14.4/8.14.4/Submit) id w91LeRp1000826 for bug-coreutils@gnu.org; Mon, 1 Oct 2018 21:40:27 GMT Date: Mon, 1 Oct 2018 21:40:27 +0000 From: Bjarni Ingi Gislason To: bug-coreutils@gnu.org Subject: [PATCH] env.x: Fix minor mistakes in the manual Message-ID: <20181001214026.GA789@rhi.hi.is> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-12-10) X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6.x X-Received-From: 2001:4830:134:3::11 X-Spam-Score: -4.1 (----) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -5.1 (-----) Fix a spelling mistake. Protect a period at the beginning of a line. Signed-off-by: Bjarni Ingi Gislason --- man/env.x | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/man/env.x b/man/env.x index fb6665b81..cb8049f3a 100644 --- a/man/env.x +++ b/man/env.x @@ -11,7 +11,7 @@ env \- run a program in a modified environment .SS "\-S/\-\-split\-string usage in scripts" The .B \-S -option allows specifing multiple parameters in a script. +option allows specifying multiple parameters in a script. Running a script named .B 1.pl containing the following first line: @@ -19,7 +19,7 @@ containing the following first line: .RS .nf #!/usr/bin/env \-S perl \-w \-T -... +\&... .fi .RE .PP -- 2.19.0 -- Bjarni I. Gislason From debbugs-submit-bounces@debbugs.gnu.org Mon Oct 01 19:15:27 2018 Received: (at 32900-done) by debbugs.gnu.org; 1 Oct 2018 23:15:27 +0000 Received: from localhost ([127.0.0.1]:33603 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g77PT-000216-Dh for submit@debbugs.gnu.org; Mon, 01 Oct 2018 19:15:27 -0400 Received: from mout.kundenserver.de ([212.227.126.187]:59023) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1g77PR-00020p-9J for 32900-done@debbugs.gnu.org; Mon, 01 Oct 2018 19:15:26 -0400 Received: from [192.168.101.10] ([91.1.210.52]) by mrelayeu.kundenserver.de (mreue009 [212.227.15.167]) with ESMTPSA (Nemesis) id 1Ml6i4-1fSFDx3ME8-00lSNz; Tue, 02 Oct 2018 01:15:13 +0200 Received: from [192.168.101.10] ([91.1.210.52]) by mrelayeu.kundenserver.de (mreue009 [212.227.15.167]) with ESMTPSA (Nemesis) id 1Ml6i4-1fSFDx3ME8-00lSNz; Tue, 02 Oct 2018 01:15:13 +0200 Subject: Re: bug#32900: [PATCH] env.x: Fix minor mistakes in the manual To: Bjarni Ingi Gislason , 32900-done@debbugs.gnu.org References: <20181001214026.GA789@rhi.hi.is> From: Bernhard Voelker Openpgp: preference=signencrypt Autocrypt: addr=mail@bernhard-voelker.de; prefer-encrypt=mutual; keydata= xsBNBFPirzMBCACyzYldTjQ4ufFOkByY5Nn5USb5GFoL48nWBwNHjd9KUbtRRNlQiPNKd6hK Gvd3BGi5aoFKA4ytfRk6jbAbW3jVb3R8wYaV08mOy4KVEKxqN4bxsXlMjNChXVR+rtKDmfI+ oPTL+cPH2X6gW4W02IRbVw0uUhNm6zEedC/gNrY/mTlf1enZ46jxZ7BTUZaG+kx38UMISIMB zSzLRtdkwgmHj4jS3p1fF2cwRqLclIfMjKGpbNFPEXeXKWrCLcqHw78795eAR9q0YvrDkfIn GdDBwfb3VM4NdulwIFzvYZMSXvSbbyPLB5YkHU5aAWQHUse4WlfT5ccDpbzUYldRAvF9ABEB AAHNK0Jlcm5oYXJkIFZvZWxrZXIgPG1haWxAYmVybmhhcmQtdm9lbGtlci5kZT7CwHkEEwEC ACMFAlPirzMCGwMHCwkIBwMCAQYVCAIJCgsEFgIDAQIeAQIXgAAKCRBGUC73lpFxle5wCACC dbs0QaJ0vR3Sff2cKdTk41rUq3YfWngsR///IOU0C5DdkePmCnJE/lUsUy0LRTxcUDLxQR+x QHU8ssRT0JUO9726dI3miy36UdsgmBYaOtLvQcidGmW1R7o0PYYf04+TFtyqKgngOUBPpMgR 6o4UsQxy/OD4bN1WDqOgIjL+D/qJpkKmgp6L6+hhaBCpiOFKRmmV7YyQ3SqVlfQNiHs5ZtkR nXpIjgZARV+GllKucI17bO0CGmTJZ1tstVy0+W3DQT1lbBkTTc++5LONM99D3jjn23l1ocOp folR53F7I4cb2RNfT23v1I59RH37lB9wMOqrKj0UjYAC2YoPGQ3BzsBNBFPirzMBCADXLWWp QihBldY6reca8ZKdc3T9qXEOa3akE3DWKztIBmNJhtYOjmpLYajQTkGa7UoJTnbmZE2Rn6ZE oNnvb0gcFNAIcY95KOI+bjOR8HEgh4cx2REXh6L6olIgyXqt/KFusE4wtVZAFxZl+30HzN6n D+1HvrjXxPJRX6MsIYOYyyX9/6OofwJK6QHODYGp8WL2olHDnmsXg4AT6Wlr7qKpKrQELlcF R4xkvdmgL/Ghw/tK0yJTxMIcewCCZWLPOXRmFRbvAadZWPAgVsJ63siNyUlVnVMSzDgTJl+s l/DMabXpqrJQx3/1Yy6mTaDs3XZT/wmBKaTLXx/LByaPxQQ7ABEBAAHCwF8EGAECAAkFAlPi rzMCGwwACgkQRlAu95aRcZWVPwgAqZT6iTXkoP37wYb41323RzhBcJ8JSk4cyBDBUXX0lMrM 3qhiClKG7phpxVdu817Gwc6Hsecg7FfjQAV8MHQ0ZFeEFdk3b2rKBqfsStc+h49/xF3Fb+if CzR9qeQF82fMSxkg18++7hMcHCMO/hPZ/Q0xRi+lrSr2QKDJQuLzSyVU14TxrCkevZjEhtma VNvcJlJzCbiBXee9Fpc5jITUXPFG8E8dxqo1n+duOyIMgozrAnzP7X5V/Ob/Ozf/aGGX9+Jd inyfCX18nWcHALKMU/36Eua/ylalf/2c2YkBp9KCLVmGgPkUgW52EeRPgroIsiwu+rwCSV6Z UyCJ+OymCg== Message-ID: <8c3da3de-d1e8-a0f0-19ce-d7d90c924af6@bernhard-voelker.de> Date: Tue, 2 Oct 2018 01:15:11 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:60.0) Gecko/20100101 Thunderbird/60.0 MIME-Version: 1.0 In-Reply-To: <20181001214026.GA789@rhi.hi.is> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit X-Provags-ID: V03:K1:WLWe8mDRmu1ITQSJPQww+sGsxMVwB6McSM+RmR/cJx/FN34tO5W VmrhXXyKrj3CBcNp28ntx3BN87R7o43GxObpKWMMzBMyiYe4GIrRsrXlbxlaqgl4t7Q4bot HvS/3oXwOS84slXYua96H84nbTV4zRw2QtJ1xI0Y3fgi5eFPRRT9VxTYSlYuKNWFSV2I2Y/ XxSshf7/FMMoaI8iLDC0Q== X-UI-Out-Filterresults: notjunk:1;V01:K0:bZM3hexciUE=:TXO/asD3L1CAy6qLcJCqro ucnCU8zAPG6OpRIYAWHFbFAp7suYTHzh6mxThbejO2ZmDhyNHdp+lZwrjdF8WNGD2gt5rzdjT /nTTayBcGpC8Tp0eJNdIRCAQ051zxNVeDW/3818GVrIjQ58gF8pI/4tMP9aUjhFEJPaIao6AV 39vGi8VpAcFS/dO9IptbCt+IKvwNPtiN0FKYkyAswaKhn2huV00A1GAMRCTvDd3OVRv398kGX adUsRZqCJT5uxmfXtrc2P9Py0Wic10VTdYTRc3LgQJCnN6AspBvpNyfjMp2W/phYBPnOlZ6Ab OirMXOJhpIFYIt5BKrQfIzfm1ebJPubYFz6tyPCQNAuy5j64+lI/lLllUyIGsrkJrBNjt4Gvl aiwQHBe3ns0ywecPegT4nNLthNyxnxd2BrAJARRwjcaap5aDOfOHGk7fNTTQP1UiLDKMPWEfz RMnpmMTOY+v6Z34m1b0aJVG/6q+LOEAJID84r+sLhxLZZoZZJC+ygNLGxfH95V+8ArYk5Y1Qq pSs47xJvDZ6sVpg2b7QNRbBlnW4PZzinCA4hIGx3xFMBUog81xrT4poi7sSlmwksRD4dQSAUy 0LmrKQhgEdzC/JpkRkTafA030dp+0pPOfwG3hPM6XrgGS4yUo6eetBCBgQgKFC215XSp7Z3ao H4lBCGtta3+o1Wz/MQOgUcl/YsSLltvKDumYVSkN6ncQJEd/g5Rx7dd1Kg3rU5SBGrlANHM/w sFbJyaAsUa5UsoFj X-Spam-Score: -0.0 (/) X-Debbugs-Envelope-To: 32900-done X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) On 10/1/18 11:40 PM, Bjarni Ingi Gislason wrote: > Fix a spelling mistake. > > Protect a period at the beginning of a line. > > Signed-off-by: Bjarni Ingi Gislason Thanks for the patch. Pushed with a slightly different commit message ... and: no "Signed-off-by" needed here. ;-) https://git.sv.gnu.org/cgit/coreutils.git/commit/?id=dedb3973e Have a nice day, Berny From unknown Tue Jun 24 17:23:38 2025 Received: (at fakecontrol) by fakecontrolmessage; To: internal_control@debbugs.gnu.org From: Debbugs Internal Request Subject: Internal Control Message-Id: bug archived. Date: Tue, 30 Oct 2018 11:24:04 +0000 User-Agent: Fakemail v42.6.9 # This is a fake control message. # # The action: # bug archived. thanks # This fakemail brought to you by your local debbugs # administrator