The previous text file has not extension!

On Tue, Dec 8, 2020 at 1:15 AM Arman Absalan <arman...@gmail.com> wrote:

> Dear maintainers,
>
> I think the modified packages(chroot, comm, join) did not follow the
> general usage style.
>
> Kind Regards,
>
> Arman Absalan
>
From 1d853dcb8a3b0cf000ffec8e66b3b615586d23dd Mon Sep 17 00:00:00 2001
From: Arman Absalan <arman...@gmail.com>
Date: Tue, 8 Dec 2020 00:48:57 +0330
Subject: [PATCH 1/3] chroot: fix usage options style

* src/chroot.c: Fix usage options style.
---
 src/chroot.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/chroot.c b/src/chroot.c
index 02081e542..f8483f693 100644
--- a/src/chroot.c
+++ b/src/chroot.c
@@ -195,13 +195,13 @@ Run COMMAND with root directory set to NEWROOT.\n\
 "), stdout);
 
       fputs (_("\
-  --groups=G_LIST        specify supplementary groups as g1,g2,..,gN\n\
+      --groups=G_LIST        specify supplementary groups as g1,g2,..,gN\n\
 "), stdout);
       fputs (_("\
-  --userspec=USER:GROUP  specify user and group (ID or name) to use\n\
+      --userspec=USER:GROUP  specify user and group (ID or name) to use\n\
 "), stdout);
       printf (_("\
-  --skip-chdir           do not change working directory to %s\n\
+      --skip-chdir           do not change working directory to %s\n\
 "), quoteaf ("/"));
 
       fputs (HELP_OPTION_DESCRIPTION, stdout);
-- 
2.25.1


From efd14c6465cf8d846a541f4770f767962dcf1e03 Mon Sep 17 00:00:00 2001
From: Arman Absalan <arman...@gmail.com>
Date: Tue, 8 Dec 2020 00:50:11 +0330
Subject: [PATCH 2/3] comm: fix usage options style

* src/comm.c: Fix usage options style.
---
 src/comm.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/comm.c b/src/comm.c
index 2bf8094bf..2acd46754 100644
--- a/src/comm.c
+++ b/src/comm.c
@@ -134,15 +134,15 @@ and column three contains lines common to both files.\n\
 "), stdout);
       fputs (_("\
 \n\
-  --check-order     check that the input is correctly sorted, even\n\
-                      if all input lines are pairable\n\
-  --nocheck-order   do not check that the input is correctly sorted\n\
+      --check-order     check that the input is correctly sorted, even\n\
+                          if all input lines are pairable\n\
+      --nocheck-order   do not check that the input is correctly sorted\n\
 "), stdout);
       fputs (_("\
-  --output-delimiter=STR  separate columns with STR\n\
+      --output-delimiter=STR  separate columns with STR\n\
 "), stdout);
       fputs (_("\
-  --total           output a summary\n\
+      --total           output a summary\n\
 "), stdout);
       fputs (_("\
   -z, --zero-terminated    line delimiter is NUL, not newline\n\
-- 
2.25.1


From e92c18cf7a48d302b684ec7b57b5ab2fc6799fec Mon Sep 17 00:00:00 2001
From: Arman Absalan <arman...@gmail.com>
Date: Tue, 8 Dec 2020 00:50:48 +0330
Subject: [PATCH 3/3] join: fix usage options style

* src/join.c: Fix usage options style.
---
 src/join.c | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/src/join.c b/src/join.c
index 1accfd48d..da093601c 100644
--- a/src/join.c
+++ b/src/join.c
@@ -218,11 +218,11 @@ When FILE1 or FILE2 (not both) is -, read standard 
input.\n\
   -v FILENUM        like -a FILENUM, but suppress joined output lines\n\
   -1 FIELD          join on this FIELD of file 1\n\
   -2 FIELD          join on this FIELD of file 2\n\
-  --check-order     check that the input is correctly sorted, even\n\
-                      if all input lines are pairable\n\
-  --nocheck-order   do not check that the input is correctly sorted\n\
-  --header          treat the first line in each file as field headers,\n\
-                      print them without trying to pair them\n\
+      --check-order     check that the input is correctly sorted, even\n\
+                          if all input lines are pairable\n\
+      --nocheck-order   do not check that the input is correctly sorted\n\
+      --header          treat the first line in each file as field headers,\n\
+                          print them without trying to pair them\n\
 "), stdout);
       fputs (_("\
   -z, --zero-terminated     line delimiter is NUL, not newline\n\
-- 
2.25.1

Reply via email to