From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.5 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id B2218C433E0 for ; Wed, 1 Jul 2020 22:08:53 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 95D5320780 for ; Wed, 1 Jul 2020 22:08:53 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726413AbgGAWIx (ORCPT ); Wed, 1 Jul 2020 18:08:53 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:37530 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725771AbgGAWIx (ORCPT ); Wed, 1 Jul 2020 18:08:53 -0400 Received: from inpost.hi.is (inpost.hi.is [IPv6:2a00:c88:4000:1650::165:62]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id B84B1C08C5C1 for ; Wed, 1 Jul 2020 15:08:52 -0700 (PDT) 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 061M8os7019228 (version=TLSv1/SSLv3 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Wed, 1 Jul 2020 22:08:50 GMT DKIM-Filter: OpenDKIM Filter v2.11.0 inpost.hi.is 061M8os7019228 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 061M8oQj025127; Wed, 1 Jul 2020 22:08:50 GMT Received: (from bjarniig@localhost) by hekla.rhi.hi.is (8.14.4/8.14.4/Submit) id 061M8oRd025126; Wed, 1 Jul 2020 22:08:50 GMT Date: Wed, 1 Jul 2020 22:08:50 +0000 From: Bjarni Ingi Gislason To: mtk.manpages@gmail.com Cc: linux-man@vger.kernel.org Subject: [PATCH] man2/*: ffix, change '-' to '\-' for options Message-ID: <20200701220850.GA25056@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) Sender: linux-man-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-man@vger.kernel.org Change '-' to '\-' for the prefix of names to indicate an option. Signed-off-by: Bjarni Ingi Gislason --- man2/alloc_hugepages.2 | 2 +- man2/listxattr.2 | 6 +++--- man2/mkdir.2 | 4 ++-- man2/open.2 | 2 +- man2/ptrace.2 | 2 +- man2/sched_setaffinity.2 | 2 +- man2/seccomp.2 | 2 +- man2/stat.2 | 2 +- man2/unshare.2 | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/man2/alloc_hugepages.2 b/man2/alloc_hugepages.2 index 14ed0516a..a5e6cb138 100644 --- a/man2/alloc_hugepages.2 +++ b/man2/alloc_hugepages.2 @@ -146,5 +146,5 @@ boot parameter. .\".PP .\" requires CONFIG_HUGETLB_PAGE (under "Processor type and features") .\" and CONFIG_HUGETLBFS (under "Filesystems"). -.\" mount -t hugetlbfs hugetlbfs /huge +.\" mount \-t hugetlbfs hugetlbfs /huge .\" SHM_HUGETLB diff --git a/man2/listxattr.2 b/man2/listxattr.2 index 28b55c1e1..40fcf377c 100644 --- a/man2/listxattr.2 +++ b/man2/listxattr.2 @@ -203,9 +203,9 @@ and then listing the attributes with the example program. .in +4n .EX $ \fBtouch /tmp/foo\fP -$ \fBsetfattr -n user.fred -v chocolate /tmp/foo\fP -$ \fBsetfattr -n user.frieda -v bar /tmp/foo\fP -$ \fBsetfattr -n user.empty /tmp/foo\fP +$ \fBsetfattr \-n user.fred \-v chocolate /tmp/foo\fP +$ \fBsetfattr \-n user.frieda \-v bar /tmp/foo\fP +$ \fBsetfattr \-n user.empty /tmp/foo\fP $ \fB./listxattr /tmp/foo\fP user.fred: chocolate user.frieda: bar diff --git a/man2/mkdir.2 b/man2/mkdir.2 index 6411080fc..e01062869 100644 --- a/man2/mkdir.2 +++ b/man2/mkdir.2 @@ -66,9 +66,9 @@ The newly created directory will be owned by the effective user ID of the process. If the directory containing the file has the set-group-ID bit set, or if the filesystem is mounted with BSD group semantics -.RI ( "mount -o bsdgroups" +.RI ( "mount \-o bsdgroups" or, synonymously -.IR "mount -o grpid" ), +.IR "mount \-o grpid" ), the new directory will inherit the group ownership from its parent; otherwise it will be owned by the effective group ID of the process. .PP diff --git a/man2/open.2 b/man2/open.2 index eb75437ff..9ab75516c 100644 --- a/man2/open.2 +++ b/man2/open.2 @@ -1192,7 +1192,7 @@ does not support refers to a regular file that is too large to be opened. The usual scenario here is that an application compiled on a 32-bit platform without -.I -D_FILE_OFFSET_BITS=64 +.I \-D_FILE_OFFSET_BITS=64 tried to open a file whose size exceeds .I (1<<31)-1 bytes; diff --git a/man2/ptrace.2 b/man2/ptrace.2 index 1233ee994..4d50d2f70 100644 --- a/man2/ptrace.2 +++ b/man2/ptrace.2 @@ -2270,7 +2270,7 @@ to the tracee after returns. This is an ordinary signal (similar to one which can be generated by -.IR "kill -TRAP" ), +.IR "kill \-TRAP" ), not a special kind of ptrace-stop. Employing .B PTRACE_GETSIGINFO diff --git a/man2/sched_setaffinity.2 b/man2/sched_setaffinity.2 index 6b54d202e..00a0ce65c 100644 --- a/man2/sched_setaffinity.2 +++ b/man2/sched_setaffinity.2 @@ -324,7 +324,7 @@ system has two cores, each with two CPUs: .PP .in +4n .EX -$ \fBlscpu | egrep -i 'core.*:|socket'\fP +$ \fBlscpu | egrep \-i 'core.*:|socket'\fP Thread(s) per core: 2 Core(s) per socket: 2 Socket(s): 1 diff --git a/man2/seccomp.2 b/man2/seccomp.2 index 731e775f4..14b3b443c 100644 --- a/man2/seccomp.2 +++ b/man2/seccomp.2 @@ -940,7 +940,7 @@ numbers on this architecture: .PP .in +4n .EX -$ \fBuname -m\fP +$ \fBuname \-m\fP x86_64 $ \fBsyscall_nr() { cat /usr/src/linux/arch/x86/syscalls/syscall_64.tbl | \e diff --git a/man2/stat.2 b/man2/stat.2 index a5f983b67..ad85e17d7 100644 --- a/man2/stat.2 +++ b/man2/stat.2 @@ -432,7 +432,7 @@ or .IR blkcnt_t . This error can occur when, for example, an application compiled on a 32-bit platform without -.I -D_FILE_OFFSET_BITS=64 +.I \-D_FILE_OFFSET_BITS=64 calls .BR stat () on a file whose size exceeds diff --git a/man2/unshare.2 b/man2/unshare.2 index 720c43ca1..4b7dbb89a 100644 --- a/man2/unshare.2 +++ b/man2/unshare.2 @@ -474,7 +474,7 @@ new shell are in separate mount namespaces: .EX $ \fBreadlink /proc/$$/ns/mnt\fP mnt:[4026531840] -$ \fBsudo ./unshare -m /bin/bash\fP +$ \fBsudo ./unshare \-m /bin/bash\fP # \fBreadlink /proc/$$/ns/mnt\fP mnt:[4026532325] .EE -- 2.27.0