]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
add newline back, but only for --help output
authorJim Meyering <jim@meyering.net>
Mon, 18 Oct 1993 03:22:20 +0000 (03:22 +0000)
committerJim Meyering <jim@meyering.net>
Mon, 18 Oct 1993 03:22:20 +0000 (03:22 +0000)
16 files changed:
src/chgrp.c
src/chmod.c
src/chown.c
src/dd.c
src/df.c
src/du.c
src/install.c
src/ln.c
src/ls.c
src/mkdir.c
src/mkfifo.c
src/mknod.c
src/mv.c
src/rm.c
src/rmdir.c
src/touch.c

index caa4a7d2d4a75906e361e189135ea8bbc3e6ce6f..bb4a5af3e5e52d2935b682088d185c9b885fce42 100644 (file)
@@ -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\
index 742268739f211d036cfc5f35641511c860cea598..5143b2055e0266250c7b019dce5bc7a9c7f69d76 100644 (file)
@@ -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\
index ee8bd52628fdb24c7224d6ab4c839047911ad837..c1223b1a7a5be18da647030e12070daaaa5536c5 100644 (file)
@@ -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\
index e9264baa1b6651017f9b41cd94c1f4b111233eb5..c57c75195e6d3e83af5a07170aefc57c89d1abe7 100644 (file)
--- 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\
index 55249076ebc4d65f867fec3f9c97c23e0aff1bf7..f4a2e7646c5dcd9add45eb40ce605bf4bc094cde 100644 (file)
--- 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\
index 6ec6bd32f0f7f2d809623c1956e81092c0845eff..35350f57efd543609549b73f2c3d310401466c4e 100644 (file)
--- 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\
index 1697bb05c4b79bce42ba33a97f94240c09721142..b9f34f33f5c85c02b9f5e9f5a11461b5036e1e50 100644 (file)
@@ -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\
index e49261027b25120a0d43787191c865397cde9127..94b63e0a6eef1c5cb1a720caec54168706a61687 100644 (file)
--- 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\
index 627d0e08aa8173f13e0dc3df08b424824983a038..b5faa9535fd4d56cb92187a28f5806e0a471d99f 100644 (file)
--- 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\
index a30299991a308f6cfdb7ad5ddadf72912961dc49..dd4abda2e534ec60bdc048891b5e9ce70f74d08a 100644 (file)
@@ -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\
index 031b44d553a885dbfb8892e34c7d176a7302504e..13ea51dd8fecec062275d2af5e92d11ab310e3cf 100644 (file)
@@ -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");
index efe838d13a05a21ce9959c987829f64b82db5ea8..02d4e3df3ef0c6fe2f412bed355178c59f616b9b 100644 (file)
@@ -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\
index 9e2f6f6709f595beaa9b5674f24ab2e3a269ea39..aa40ae1572bda5a08a0b01e070306e4ed9817035 100644 (file)
--- 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\
index d69e75ba83d3c728473c4558b7cebcbfe7b2bbef..ef4958704b61c8a2c422874698ff589419aee82e 100644 (file)
--- 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\
index 918ef766aa752a5a2cab6a48f2a6c57f5afb4098..8859f94ea4894b59bc49f364eb7d3c13a6421dea 100644 (file)
@@ -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");
index 22ffcd9aa13909458e484296524de978658ab8ad..78c2258f5502d519a0882d02d6ef9b6e0234b00c 100644 (file)
@@ -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\