summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/chgrp.c1
-rw-r--r--src/chmod.c1
-rw-r--r--src/chown.c1
-rw-r--r--src/dd.c1
-rw-r--r--src/df.c1
-rw-r--r--src/du.c1
-rw-r--r--src/install.c1
-rw-r--r--src/ln.c1
-rw-r--r--src/ls.c1
-rw-r--r--src/mkdir.c1
-rw-r--r--src/mkfifo.c1
-rw-r--r--src/mknod.c1
-rw-r--r--src/mv.c1
-rw-r--r--src/rm.c1
-rw-r--r--src/rmdir.c1
-rw-r--r--src/touch.c1
16 files changed, 16 insertions, 0 deletions
diff --git a/src/chgrp.c b/src/chgrp.c
index caa4a7d2d..bb4a5af3e 100644
--- a/src/chgrp.c
+++ b/src/chgrp.c
@@ -314,6 +314,7 @@ Usage: %s [OPTION]... GROUP FILE...\n\
if (status == 0)
printf ("\
+\n\
-c, --changes like verbose but report only when a change is made\n\
-f, --silent, --quiet suppress most error messages\n\
-v, --verbose output a diagnostic for every file processed\n\
diff --git a/src/chmod.c b/src/chmod.c
index 742268739..5143b2055 100644
--- a/src/chmod.c
+++ b/src/chmod.c
@@ -324,6 +324,7 @@ Usage: %s [OPTION]... MODE[,MODE]... FILE...\n\
if (status == 0)
printf ("\
+\n\
-c, --changes like verbose but report only when a change is made\n\
-f, --silent, --quiet suppress most error messages\n\
-v, --verbose output a diagnostic for every file processed\n\
diff --git a/src/chown.c b/src/chown.c
index ee8bd5262..c1223b1a7 100644
--- a/src/chown.c
+++ b/src/chown.c
@@ -303,6 +303,7 @@ Usage: %s [OPTION]... OWNER[.[GROUP]] FILE...\n\
if (status == 0)
printf ("\
+\n\
-c, --changes be verbose whenever change occurs\n\
-f, --silent, --quiet suppress most error messages\n\
-v, --verbose explain what is being done\n\
diff --git a/src/dd.c b/src/dd.c
index e9264baa1..c57c75195 100644
--- a/src/dd.c
+++ b/src/dd.c
@@ -1080,6 +1080,7 @@ Usage: %s [OPTION]...\n\
if (status == 0)
printf ("\
+\n\
bs=BYTES force ibs=BYTES and obs=BYTES\n\
cbs=BYTES convert BYTES bytes at a time\n\
conv=KEYWORDS convert the file as per the comma separated keyword list\n\
diff --git a/src/df.c b/src/df.c
index 55249076e..f4a2e7646 100644
--- a/src/df.c
+++ b/src/df.c
@@ -484,6 +484,7 @@ Usage: %s [OPTION] [PATH]...\n\
if (status == 0)
printf ("\
+\n\
-a, --all include filesystems having 0 blocks\n\
-i, --inodes list inode information instead of block usage\n\
-k, --kilobytes use 1024 blocks, not 512 despite POSIXLY_CORRECT\n\
diff --git a/src/du.c b/src/du.c
index 6ec6bd32f..35350f57e 100644
--- a/src/du.c
+++ b/src/du.c
@@ -206,6 +206,7 @@ Usage: %s [OPTION]... [PATH]...\n\
if (status == 0)
printf ("\
+\n\
-a, --all write counts for all files, not just directories\n\
-b, --bytes print size in bytes\n\
-c, --total produce a grand total\n\
diff --git a/src/install.c b/src/install.c
index 1697bb05c..b9f34f33f 100644
--- a/src/install.c
+++ b/src/install.c
@@ -549,6 +549,7 @@ Usage: %s [OPTION]... SOURCE DEST (1st format)\n\
if (status == 0)
printf ("\
+\n\
-c (ignored)\n\
-d, --directory create [leading] directories, mandatory for 3rd format\n\
-g, --group GROUP set group ownership, instead of process' current group\n\
diff --git a/src/ln.c b/src/ln.c
index e49261027..94b63e0a6 100644
--- a/src/ln.c
+++ b/src/ln.c
@@ -361,6 +361,7 @@ Usage: %s [OPTION]... SOURCE [DEST]\n\
if (status == 0)
printf ("\
+\n\
-b, --backup make backups for removed files\n\
-d, -F, --directory hard link directories (super-user only)\n\
-f, --force remove existing destinations\n\
diff --git a/src/ls.c b/src/ls.c
index 627d0e08a..b5faa9535 100644
--- a/src/ls.c
+++ b/src/ls.c
@@ -1888,6 +1888,7 @@ Usage: %s [OPTION]... [PATH]...\n\
if (status == 0)
{
printf ("\
+\n\
-a, --all do not hide entries starting with .\n\
-b, --escape print octal escapes for nongraphic characters\n\
-c sort by change time; with -l: show ctime\n\
diff --git a/src/mkdir.c b/src/mkdir.c
index a30299991..dd4abda2e 100644
--- a/src/mkdir.c
+++ b/src/mkdir.c
@@ -152,6 +152,7 @@ Usage: %s [OPTION] DIRECTORY...\n\
if (status == 0)
printf ("\
+\n\
-p, --parents no error if existing, make parent directories as needed\n\
-m, --mode MODE set permission mode (as in chmod), not 0777 - umask\n\
--help display this help and exit\n\
diff --git a/src/mkfifo.c b/src/mkfifo.c
index 031b44d55..13ea51dd8 100644
--- a/src/mkfifo.c
+++ b/src/mkfifo.c
@@ -140,6 +140,7 @@ Usage: %s [OPTION] PATH...\n\
if (status == 0)
printf ("\
+\n\
-m, --mode MODE set permission mode (as in chmod), not 0666 - umask\n\
--help display this help and exit\n\
--version output version information and exit\n");
diff --git a/src/mknod.c b/src/mknod.c
index efe838d13..02d4e3df3 100644
--- a/src/mknod.c
+++ b/src/mknod.c
@@ -175,6 +175,7 @@ Usage: %s [OPTION]... PATH TYPE [MAJOR MINOR]\n\
if (status == 0)
printf ("\
+\n\
-m, --mode MODE set permission mode (as in chmod), not 0666 - umask\n\
--help display this help and exit\n\
--version output version information and exit\n\
diff --git a/src/mv.c b/src/mv.c
index 9e2f6f670..aa40ae157 100644
--- a/src/mv.c
+++ b/src/mv.c
@@ -480,6 +480,7 @@ Usage: %s [OPTION]... SOURCE DEST\n\
if (status == 0)
printf ("\
+\n\
-b, --backup make backup before removal\n\
-f, --force remove existing destinations, never prompt\n\
-i, --interactive prompt before overwrite\n\
diff --git a/src/rm.c b/src/rm.c
index d69e75ba8..ef4958704 100644
--- a/src/rm.c
+++ b/src/rm.c
@@ -537,6 +537,7 @@ Usage: %s [OPTION]... PATH...\n\
if (status == 0)
printf ("\
+\n\
-d, --directory unlink directory, even if non-empty (super-user only)\n\
-f, --force ignore nonexistent files, never prompt\n\
-i, --interactive prompt before any removal\n\
diff --git a/src/rmdir.c b/src/rmdir.c
index 918ef766a..8859f94ea 100644
--- a/src/rmdir.c
+++ b/src/rmdir.c
@@ -154,6 +154,7 @@ Usage: %s [OPTION]... DIRECTORY...\n\
if (status == 0)
printf ("\
+\n\
-p, --parents remove explicit parent directories if being emptied\n\
--help display this help and exit\n\
--version output version information and exit\n");
diff --git a/src/touch.c b/src/touch.c
index 22ffcd9aa..78c2258f5 100644
--- a/src/touch.c
+++ b/src/touch.c
@@ -386,6 +386,7 @@ Usage: %s [OPTION]... FILE...\n\
if (status == 0)
printf ("\
+\n\
-a change only the access time\n\
-c do not create any files\n\
-d, --date STRING parse STRING and use it instead of current time\n\