diff options
author | Pere Orga <gotrunks@gmail.com> | 2011-03-31 14:43:25 +0200 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2011-03-31 14:43:25 +0200 |
commit | 34425389e09353a8dacdd6b23a62553f699c544c (patch) | |
tree | 4eb2e19685536384748e75af827deca885c9cc0a /coreutils/ln.c | |
parent | e3d8d077b7d2e51fed03dc20267eadbe38903b2a (diff) | |
download | busybox-w32-34425389e09353a8dacdd6b23a62553f699c544c.tar.gz busybox-w32-34425389e09353a8dacdd6b23a62553f699c544c.tar.bz2 busybox-w32-34425389e09353a8dacdd6b23a62553f699c544c.zip |
move help text from include/usage.src.h to coreutils/*.c
Signed-off-by: Pere Orga <gotrunks@gmail.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'coreutils/ln.c')
-rw-r--r-- | coreutils/ln.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/coreutils/ln.c b/coreutils/ln.c index 6da290c11..2da915a68 100644 --- a/coreutils/ln.c +++ b/coreutils/ln.c | |||
@@ -11,6 +11,22 @@ | |||
11 | /* BB_AUDIT GNU options missing: -d, -F, -i, and -v. */ | 11 | /* BB_AUDIT GNU options missing: -d, -F, -i, and -v. */ |
12 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/ln.html */ | 12 | /* http://www.opengroup.org/onlinepubs/007904975/utilities/ln.html */ |
13 | 13 | ||
14 | //usage:#define ln_trivial_usage | ||
15 | //usage: "[OPTIONS] TARGET... LINK|DIR" | ||
16 | //usage:#define ln_full_usage "\n\n" | ||
17 | //usage: "Create a link LINK or DIR/TARGET to the specified TARGET(s)\n" | ||
18 | //usage: "\nOptions:" | ||
19 | //usage: "\n -s Make symlinks instead of hardlinks" | ||
20 | //usage: "\n -f Remove existing destinations" | ||
21 | //usage: "\n -n Don't dereference symlinks - treat like normal file" | ||
22 | //usage: "\n -b Make a backup of the target (if exists) before link operation" | ||
23 | //usage: "\n -S suf Use suffix instead of ~ when making backup files" | ||
24 | //usage: | ||
25 | //usage:#define ln_example_usage | ||
26 | //usage: "$ ln -s BusyBox /tmp/ls\n" | ||
27 | //usage: "$ ls -l /tmp/ls\n" | ||
28 | //usage: "lrwxrwxrwx 1 root root 7 Apr 12 18:39 ls -> BusyBox*\n" | ||
29 | |||
14 | #include "libbb.h" | 30 | #include "libbb.h" |
15 | 31 | ||
16 | /* This is a NOEXEC applet. Be very careful! */ | 32 | /* This is a NOEXEC applet. Be very careful! */ |