From 9965a3195967dd1c3dce8bd48662cbeefdf281b5 Mon Sep 17 00:00:00 2001 From: Tamwile Date: Mon, 30 Dec 2024 15:20:56 +0100 Subject: [PATCH] add erlang static http server oneliner; add python and erlang to toc --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 2c1b9e4..fda4a11 100644 --- a/README.md +++ b/README.md @@ -1712,6 +1712,8 @@ text :arrow_left: encoded * [certbot](#tool-certbot) * [network-other](#tool-network-other) * [git](#tool-git) + * [python](#tool-python) + * [erlang](#tool-erlang) * [awk](#tool-awk) * [sed](#tool-sed) * [grep](#tool-grep) @@ -4043,6 +4045,16 @@ python -m base64 -e <<< "sample string" python -m base64 -d <<< "dGhpcyBpcyBlbmNvZGVkCg==" ``` +##### Tool: [erlang](https://www.erlang.org/) + +###### Static HTTP web server + +```bash +erl -S httpd serve --port 8000 /path/to/serve +``` + + __ + ##### Tool: [awk](http://www.grymoire.com/Unix/Awk.html) ###### Search for matching lines