diff options
author | epochqwert <epoch@53flpnlls43fcguy.onion> | 2015-02-06 02:32:04 -0600 |
---|---|---|
committer | epochqwert <epoch@53flpnlls43fcguy.onion> | 2015-02-06 02:32:04 -0600 |
commit | 3c2d290d17b739f14774dfcdf48581c1fb212286 (patch) | |
tree | 4b3bcf021e9994c21030aad99f84831ad31dbe02 /nocompile/bin | |
parent | abe09a4717370f331b050ad39da3a7e9a478f02d (diff) | |
download | misc-3c2d290d17b739f14774dfcdf48581c1fb212286.tar.gz misc-3c2d290d17b739f14774dfcdf48581c1fb212286.zip |
some new tools. clump is useful. httpd got some better logging. cuturl got some bugfixes I think. todo is just a version of segfault's !todo but for shell. don't remember what I did to telnet-gateway.sh
Diffstat (limited to 'nocompile/bin')
-rwxr-xr-x | nocompile/bin/decode_html_entities | 4 | ||||
-rwxr-xr-x | nocompile/bin/encode_html_entities | 4 | ||||
-rwxr-xr-x | nocompile/bin/todo | 2 |
3 files changed, 10 insertions, 0 deletions
diff --git a/nocompile/bin/decode_html_entities b/nocompile/bin/decode_html_entities new file mode 100755 index 0000000..08bd7c9 --- /dev/null +++ b/nocompile/bin/decode_html_entities @@ -0,0 +1,4 @@ +#!/bin/sh +sed "s/\>/>/g" \ + | sed "s/\</</g" \ + | sed "s/\&/\&/g" diff --git a/nocompile/bin/encode_html_entities b/nocompile/bin/encode_html_entities new file mode 100755 index 0000000..4cb1836 --- /dev/null +++ b/nocompile/bin/encode_html_entities @@ -0,0 +1,4 @@ +#!/bin/sh +sed "s/&/\&/g" \ + | sed "s/</\</g" \ + | sed "s/>/\>/g" diff --git a/nocompile/bin/todo b/nocompile/bin/todo new file mode 100755 index 0000000..611a25b --- /dev/null +++ b/nocompile/bin/todo @@ -0,0 +1,2 @@ +#!/bin/sh +cat -n /var/todo/$USER.txt | shuffle -f-| head -n1 |