aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archival/cpio.c2
-rw-r--r--findutils/grep.c2
-rw-r--r--findutils/xargs.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/archival/cpio.c b/archival/cpio.c
index d84f6937d..f525419b8 100644
--- a/archival/cpio.c
+++ b/archival/cpio.c
@@ -74,7 +74,7 @@
74//usage: "\n -F FILE Input (-t,-i,-p) or output (-o) file" 74//usage: "\n -F FILE Input (-t,-i,-p) or output (-o) file"
75//usage: "\n -R USER[:GRP] Set owner of created files" 75//usage: "\n -R USER[:GRP] Set owner of created files"
76//usage: "\n -L Dereference symlinks" 76//usage: "\n -L Dereference symlinks"
77//usage: "\n -0 Input is separated by NULs" 77//usage: "\n -0 NUL terminated input"
78 78
79/* GNU cpio 2.9 --help (abridged): 79/* GNU cpio 2.9 --help (abridged):
80 80
diff --git a/findutils/grep.c b/findutils/grep.c
index be4362ed0..8600d72fa 100644
--- a/findutils/grep.c
+++ b/findutils/grep.c
@@ -83,7 +83,7 @@
83//usage: "\n -F PATTERN is a literal (not regexp)" 83//usage: "\n -F PATTERN is a literal (not regexp)"
84//usage: "\n -E PATTERN is an extended regexp" 84//usage: "\n -E PATTERN is an extended regexp"
85//usage: IF_EXTRA_COMPAT( 85//usage: IF_EXTRA_COMPAT(
86//usage: "\n -z Input is NUL terminated" 86//usage: "\n -z NUL terminated input"
87//usage: ) 87//usage: )
88//usage: "\n -m N Match up to N times per file" 88//usage: "\n -m N Match up to N times per file"
89//usage: IF_FEATURE_GREP_CONTEXT( 89//usage: IF_FEATURE_GREP_CONTEXT(
diff --git a/findutils/xargs.c b/findutils/xargs.c
index e2b3527f3..90ff05986 100644
--- a/findutils/xargs.c
+++ b/findutils/xargs.c
@@ -537,7 +537,7 @@ static int xargs_ask_confirmation(void)
537//usage:#define xargs_full_usage "\n\n" 537//usage:#define xargs_full_usage "\n\n"
538//usage: "Run PROG on every item given by stdin\n" 538//usage: "Run PROG on every item given by stdin\n"
539//usage: IF_FEATURE_XARGS_SUPPORT_ZERO_TERM( 539//usage: IF_FEATURE_XARGS_SUPPORT_ZERO_TERM(
540//usage: "\n -0 Input is separated by NULs" 540//usage: "\n -0 NUL terminated input"
541//usage: ) 541//usage: )
542//usage: IF_FEATURE_XARGS_SUPPORT_ARGS_FILE( 542//usage: IF_FEATURE_XARGS_SUPPORT_ARGS_FILE(
543//usage: "\n -a FILE Read from FILE instead of stdin" 543//usage: "\n -a FILE Read from FILE instead of stdin"