diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-04 23:32:35 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-06-04 23:32:35 +0000 |
commit | 746204b1b8ee1948ca91637eeb34043e5e4f0aad (patch) | |
tree | 030dde44d64e3420a1980674c1c8815807c45ca4 /include | |
parent | 8c1aaf32978da33a462997b269536f1de47c79c6 (diff) | |
download | busybox-w32-746204b1b8ee1948ca91637eeb34043e5e4f0aad.tar.gz busybox-w32-746204b1b8ee1948ca91637eeb34043e5e4f0aad.tar.bz2 busybox-w32-746204b1b8ee1948ca91637eeb34043e5e4f0aad.zip |
uudecode: fix to base64 decode by Jorgen Cederlof <jcz@google.com>
improved help texts
# make bloatcheck
function old new delta
.rodata 127000 127032 +32
packed_usage 22156 22151 -5
uudecode_main 360 348 -12
uuencode_main 490 468 -22
read_base64 283 254 -29
------------------------------------------------------------------------------
(add/remove: 0/0 grow/shrink: 1/4 up/down: 32/-68) Total: -36 bytes
Diffstat (limited to 'include')
-rw-r--r-- | include/usage.h | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/include/usage.h b/include/usage.h index 085bbdd7b..13d79b639 100644 --- a/include/usage.h +++ b/include/usage.h | |||
@@ -3664,20 +3664,19 @@ USE_FEATURE_RUN_PARTS_FANCY("\n -l Prints names of all matching files even when | |||
3664 | "[pauses for 1 second]\n" | 3664 | "[pauses for 1 second]\n" |
3665 | 3665 | ||
3666 | #define uudecode_trivial_usage \ | 3666 | #define uudecode_trivial_usage \ |
3667 | "[FILE]..." | 3667 | "[-o outfile] [infile]" |
3668 | #define uudecode_full_usage \ | 3668 | #define uudecode_full_usage \ |
3669 | "Uudecode a file" \ | 3669 | "Uudecode a file\n" \ |
3670 | "\n\nOptions:\n" \ | 3670 | "NB: finds outfile name in uuencoded source unless -o is given" |
3671 | " -o FILE Direct output to FILE" | ||
3672 | #define uudecode_example_usage \ | 3671 | #define uudecode_example_usage \ |
3673 | "$ uudecode -o busybox busybox.uu\n" \ | 3672 | "$ uudecode -o busybox busybox.uu\n" \ |
3674 | "$ ls -l busybox\n" \ | 3673 | "$ ls -l busybox\n" \ |
3675 | "-rwxr-xr-x 1 ams ams 245264 Jun 7 21:35 busybox\n" | 3674 | "-rwxr-xr-x 1 ams ams 245264 Jun 7 21:35 busybox\n" |
3676 | 3675 | ||
3677 | #define uuencode_trivial_usage \ | 3676 | #define uuencode_trivial_usage \ |
3678 | "[OPTION] [INFILE] REMOTEFILE" | 3677 | "[-m] [infile] stored_filename" |
3679 | #define uuencode_full_usage \ | 3678 | #define uuencode_full_usage \ |
3680 | "Uuencode a file" \ | 3679 | "Uuencode a file to stdout" \ |
3681 | "\n\nOptions:\n" \ | 3680 | "\n\nOptions:\n" \ |
3682 | " -m Use base64 encoding per RFC1521" | 3681 | " -m Use base64 encoding per RFC1521" |
3683 | #define uuencode_example_usage \ | 3682 | #define uuencode_example_usage \ |