diff options
Diffstat (limited to 'coreutils/uudecode.c')
-rw-r--r-- | coreutils/uudecode.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/coreutils/uudecode.c b/coreutils/uudecode.c index 56ed254e5..47a155ecb 100644 --- a/coreutils/uudecode.c +++ b/coreutils/uudecode.c | |||
@@ -10,6 +10,18 @@ | |||
10 | * Bugs: the spec doesn't mention anything about "`\n`\n" prior to the | 10 | * Bugs: the spec doesn't mention anything about "`\n`\n" prior to the |
11 | * "end" line | 11 | * "end" line |
12 | */ | 12 | */ |
13 | |||
14 | //usage:#define uudecode_trivial_usage | ||
15 | //usage: "[-o OUTFILE] [INFILE]" | ||
16 | //usage:#define uudecode_full_usage "\n\n" | ||
17 | //usage: "Uudecode a file\n" | ||
18 | //usage: "Finds outfile name in uuencoded source unless -o is given" | ||
19 | //usage: | ||
20 | //usage:#define uudecode_example_usage | ||
21 | //usage: "$ uudecode -o busybox busybox.uu\n" | ||
22 | //usage: "$ ls -l busybox\n" | ||
23 | //usage: "-rwxr-xr-x 1 ams ams 245264 Jun 7 21:35 busybox\n" | ||
24 | |||
13 | #include "libbb.h" | 25 | #include "libbb.h" |
14 | 26 | ||
15 | #if ENABLE_UUDECODE | 27 | #if ENABLE_UUDECODE |