diff options
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! */ |