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
This commit is contained in:
Denis Vlasenko
2007-06-04 23:32:35 +00:00
parent 8c1aaf3297
commit 746204b1b8
3 changed files with 56 additions and 28 deletions

View File

@ -3664,20 +3664,19 @@ USE_FEATURE_RUN_PARTS_FANCY("\n -l Prints names of all matching files even when
"[pauses for 1 second]\n"
#define uudecode_trivial_usage \
"[FILE]..."
"[-o outfile] [infile]"
#define uudecode_full_usage \
"Uudecode a file" \
"\n\nOptions:\n" \
" -o FILE Direct output to FILE"
"Uudecode a file\n" \
"NB: finds outfile name in uuencoded source unless -o is given"
#define uudecode_example_usage \
"$ uudecode -o busybox busybox.uu\n" \
"$ ls -l busybox\n" \
"-rwxr-xr-x 1 ams ams 245264 Jun 7 21:35 busybox\n"
#define uuencode_trivial_usage \
"[OPTION] [INFILE] REMOTEFILE"
"[-m] [infile] stored_filename"
#define uuencode_full_usage \
"Uuencode a file" \
"Uuencode a file to stdout" \
"\n\nOptions:\n" \
" -m Use base64 encoding per RFC1521"
#define uuencode_example_usage \