aboutsummaryrefslogtreecommitdiff
path: root/coreutils/ln.c
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils/ln.c')
-rw-r--r--coreutils/ln.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/coreutils/ln.c b/coreutils/ln.c
index 5591e8335..2dcf79c07 100644
--- a/coreutils/ln.c
+++ b/coreutils/ln.c
@@ -21,14 +21,14 @@
21/* http://www.opengroup.org/onlinepubs/007904975/utilities/ln.html */ 21/* http://www.opengroup.org/onlinepubs/007904975/utilities/ln.html */
22 22
23//usage:#define ln_trivial_usage 23//usage:#define ln_trivial_usage
24//usage: "[OPTIONS] TARGET... LINK|DIR" 24//usage: "[-sfnbtv] [-S SUF] TARGET... LINK|DIR"
25//usage:#define ln_full_usage "\n\n" 25//usage:#define ln_full_usage "\n\n"
26//usage: "Create a link LINK or DIR/TARGET to the specified TARGET(s)\n" 26//usage: "Create a link LINK or DIR/TARGET to the specified TARGET(s)\n"
27//usage: "\n -s Make symlinks instead of hardlinks" 27//usage: "\n -s Make symlinks instead of hardlinks"
28//usage: "\n -f Remove existing destinations" 28//usage: "\n -f Remove existing destinations"
29//usage: "\n -n Don't dereference symlinks - treat like normal file" 29//usage: "\n -n Don't dereference symlinks - treat like normal file"
30//usage: "\n -b Make a backup of the target (if exists) before link operation" 30//usage: "\n -b Make a backup of the target (if exists) before link operation"
31//usage: "\n -S suf Use suffix instead of ~ when making backup files" 31//usage: "\n -S SUF Use suffix instead of ~ when making backup files"
32//usage: "\n -T Treat LINK as a file, not DIR" 32//usage: "\n -T Treat LINK as a file, not DIR"
33//usage: "\n -v Verbose" 33//usage: "\n -v Verbose"
34//usage: 34//usage: