diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-05-22 22:39:10 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-05-22 22:39:10 +0000 |
commit | 3200f5ac689288b830a572e43dbdfd35bdac119c (patch) | |
tree | 790a2319296ec6d0b79fdb3f64215046caac5ba2 /applets | |
parent | 57e6a49e5bbe1a6519d7507d7cd9b02e5ceca694 (diff) | |
download | busybox-3200f5ac689288b830a572e43dbdfd35bdac119c.tar.gz |
It turns out the descriptions of both dos2unix and unix2dos
were broken. This fixes.
-Erik
Diffstat (limited to 'applets')
-rw-r--r-- | applets/usage.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/applets/usage.h b/applets/usage.h index 63c00c674..aa66d3733 100644 --- a/applets/usage.h +++ b/applets/usage.h @@ -255,10 +255,10 @@ #define dos2unix_full_usage \ "Converts FILE from dos format to unix format. When no option\n" \ "is given, the input is converted to the opposite output format.\n" \ - "When no file is given, uses stdin for input and stdout for output." \ + "When no file is given, uses stdin for input and stdout for output.\n\n" \ "Options:\n" \ "\t-u\toutput will be in UNIX format\n" \ - "\t-d\toutput will be in DOS format\n\n" \ + "\t-d\toutput will be in DOS format" #define dpkg_trivial_usage \ "[-i|-r|--unpack|--configure] my.deb" @@ -1649,10 +1649,10 @@ #define unix2dos_full_usage \ "Converts FILE from unix format to dos format. When no option\n" \ "is given, the input is converted to the opposite output format.\n" \ - "When no file is given, uses stdin for input and stdout for output." \ + "When no file is given, uses stdin for input and stdout for output.\n" \ "Options:\n" \ "\t-u\toutput will be in UNIX format\n" \ - "\t-d\toutput will be in DOS format\n\n" \ + "\t-d\toutput will be in DOS format" #define update_trivial_usage \ "[options]" |