diff options
author | Rob Landley <rob@landley.net> | 2019-09-04 15:59:23 -0500 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2019-09-04 15:59:23 -0500 |
commit | 2a1b31b92a84b23f7e3ddc5b47930acb95df5486 (patch) | |
tree | 0bebaddd371c38816bbff030511effc3c4565d72 | |
parent | 935980346f62febe9ed2bf029b55e0111fe1b073 (diff) | |
download | toybox-2a1b31b92a84b23f7e3ddc5b47930acb95df5486.tar.gz |
Add instructions for doing install_flat by hand.
-rw-r--r-- | Config.in | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -20,8 +20,10 @@ config TOYBOX --long Show path to each command - To install command symlinks, try: + To install command symlinks with paths, try: for i in $(/bin/toybox --long); do ln -s /bin/toybox $i; done + or all in one directory: + for i in $(./toybox); do ln -s toybox $i; done; PATH=$PWD:$PATH Most toybox commands also understand the following arguments: |