diff options
author | tv <tv@also> | 2011-07-24 20:15:22 +0200 |
---|---|---|
committer | tv <tv@also> | 2011-07-24 20:16:06 +0200 |
commit | 18a2123b50d5e71da251b5ee2902608fba7ef935 (patch) | |
tree | 17cdae43b24e6204f8cba3d66ffeb161cbe30cb8 /anonbox | |
parent | 42db4b574fdfa81a4deac9896ae44170b9866fcd (diff) |
rm kvutils and move anonbox.net to proper place
Diffstat (limited to 'anonbox')
-rwxr-xr-x | anonbox/anonbox.sh | 57 |
1 files changed, 0 insertions, 57 deletions
diff --git a/anonbox/anonbox.sh b/anonbox/anonbox.sh deleted file mode 100755 index d038cd0a..00000000 --- a/anonbox/anonbox.sh +++ /dev/null @@ -1,57 +0,0 @@ -#! /bin/bash -#### anonbox.net [--check] -#### anonbox account creator -set -euf - -## -script_begin_date="`date --rfc-3339=ns`" - -## -GET() { - wget --quiet --no-check-certificate -O- https://anonbox.net/en/ -} - -## retrieve data -eval "$(${GET-GET} | - sed -rn ' -s^<dd><p>([[:alnum:]@.]+)</p></dd>$\ - email="\1" ; p -s^<dd><p><a href="([^"\\]+)">.*</a></p></dd>$\ - uri="\1/" ; p -s^<dd><p>([0-9]+)/([0-9]+)/([0-9]+) ([0-9]+):([0-9]+) ([ap]).m.</p></dd>$\ - Y=20\3 ; \ - m=\1 ; \ - d=\2 ; \ - H=\4 ; \ - M=\5 ; \ - p=\6 ; p')" - -## make best-before-date RFC-3339-(seconds)-conform -case "$p" in - p) H="`echo $H+12 | bc`" ;; -esac -s=00 -z=+02:00 -best_before="$Y-$m-$d $H:$M$z" - -## -script_end_date="`date --rfc-3339=ns`" - -## -for key in email uri best_before script_begin_date script_end_date ; do - eval "val=\"\$$key\"" - echo "$key=\"$val\"" -done - -## -if echo "$*" | tr "$IFS" ' ' | egrep -q "(^| )--check( |$)"; then - file="/tmp/save-$email" - echo "file=\"$file\"" - echo >&2 - echo "# downloading email..." >&2 - while ! curl -ksS "$uri" | tee "$file" | grep .; do - sleep 10 - done -fi - -#### end of file. |