diff options
author | Rob Landley <rob@landley.net> | 2014-06-10 21:57:05 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2014-06-10 21:57:05 -0500 |
commit | 8431692738dc14412c236ab4ebc6464463b6327a (patch) | |
tree | 74089cf21e571b92d32f524d89516adedd027280 | |
parent | b5f97805cee1daab12641ad8927d0539aa0d99ac (diff) | |
download | toybox-8431692738dc14412c236ab4ebc6464463b6327a.tar.gz |
Update toybox help to say how to install the static binary.
-rw-r--r-- | Config.in | 7 |
1 files changed, 6 insertions, 1 deletions
@@ -12,11 +12,16 @@ config TOYBOX bool default y help - usage: toybox [command] [arguments...] + usage: toybox [--long | [command] [arguments...]] With no arguments, shows available commands. First argument is name of a command to run, followed by any arguments to that command. + --long Show path to each command + + To install command symlinks, try: + for i in $(/bin/toybox --long); do ln -s /bin/toybox $i; done + config TOYBOX_SUID bool "SUID support" default y |