diff options
author | Elliott Hughes <enh@google.com> | 2019-10-03 10:23:54 -0700 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-10-04 16:18:16 -0500 |
commit | 38e5ab2b492b696656901d8121b60466a24d06c2 (patch) | |
tree | cd04ac7846a68f5db634ce98b77a3916ec96b5c9 /toys | |
parent | 86c25f5335bd664a4f6dc7255c7556df707fe086 (diff) | |
download | toybox-38e5ab2b492b696656901d8121b60466a24d06c2.tar.gz |
ln.c: add -t to synopsis.
We're inconsistent about whether the option help below should be just `-t`
or `-t DIR`, but the majority of commands _don't_ repeat their argument,
so I've left that as-is for now.
Diffstat (limited to 'toys')
-rw-r--r-- | toys/posix/ln.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/posix/ln.c b/toys/posix/ln.c index 18a74d41..306f0cac 100644 --- a/toys/posix/ln.c +++ b/toys/posix/ln.c @@ -10,7 +10,7 @@ config LN bool "ln" default y help - usage: ln [-sfnv] [FROM...] TO + usage: ln [-sfnv] [-t DIR] [FROM...] TO Create a link between FROM and TO. One/two/many arguments work like "mv" or "cp". |