From e349e40ba05a4aeba78d27bd7f5b553f6a4d1754 Mon Sep 17 00:00:00 2001 From: trimstray Date: Mon, 10 Feb 2020 19:19:55 +0100 Subject: [PATCH] add 'busybox' one-liners - signed-off-by: trimstray --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 2fd7953..e72c877 100644 --- a/README.md +++ b/README.md @@ -1561,6 +1561,7 @@ For more information please see [How to Obscure Any URL](http://www.pc-help.org/ ##### Table of Contents * [terminal](#tool-terminal) + * [busybox](#tool-busybox) * [mount](#tool-mount) * [fuser](#tool-fuser) * [lsof](#tool-lsof) @@ -1780,7 +1781,16 @@ for i in {1..10} ; do echo $i ; done ```bash unset MAIL; export MAILCHECK=1; export MAILPATH='$FILE_TO_WATCH?$MESSAGE' +``` + +--- + +##### Tool: [busybox](https://www.busybox.net/) +###### Static HTTP web server + +```bash +busybox httpd -p $PORT -h $HOME [-c httpd.conf] ``` ___