diff options
author | John L. Hammond | 2019-05-09 09:22:09 -0500 |
---|---|---|
committer | Denys Vlasenko | 2019-05-09 16:29:29 +0200 |
commit | 94f607a9045481b614cac1b319bd435af01b8860 (patch) | |
tree | 3a6f20853d2ae9386b6f01607168278dded222c6 | |
parent | 89023b167fad897fb6c0d2cdd24f0140beea7df3 (diff) | |
download | busybox-94f607a9045481b614cac1b319bd435af01b8860.zip busybox-94f607a9045481b614cac1b319bd435af01b8860.tar.gz |
ln: correct 'ln -T' usage message
Signed-off-by: John L. Hammond <jhammond@indeed.com>
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
-rw-r--r-- | coreutils/ln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/coreutils/ln.c b/coreutils/ln.c index 3fe2f3f..afeb0d7 100644 --- a/coreutils/ln.c +++ b/coreutils/ln.c @@ -29,7 +29,7 @@ //usage: "\n -n Don't dereference symlinks - treat like normal file" //usage: "\n -b Make a backup of the target (if exists) before link operation" //usage: "\n -S suf Use suffix instead of ~ when making backup files" -//usage: "\n -T 2nd arg must be a DIR" +//usage: "\n -T Treat LINK as a file, not DIR" //usage: "\n -v Verbose" //usage: //usage:#define ln_example_usage |