aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-10-03 10:23:54 -0700
committerRob Landley <rob@landley.net>2019-10-04 16:18:16 -0500
commit38e5ab2b492b696656901d8121b60466a24d06c2 (patch)
treecd04ac7846a68f5db634ce98b77a3916ec96b5c9
parent86c25f5335bd664a4f6dc7255c7556df707fe086 (diff)
downloadtoybox-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.
-rw-r--r--toys/posix/ln.c2
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".