#!/bin/sh signalhandler() { printf "\n\n" printf "****************************************\n" printf "* THIS WAS CLOSE. You are lucky. *\n" printf "* We love you at bitreich, so we did *\n" printf "* not delete your files. *\n" printf "* We hope you learn three things: *\n" printf "* 1. Never execute random commands, *\n" printf "* printed on some random website. *\n" printf "* 2. If we would not control the *\n" printf "* server, you would have trusted *\n" printf "* some insecure key and be redir- *\n" printf "* ected to some other website. *\n" printf "* (curl -kL) *\n" printf "* 3. Have you removed the sudo? *\n" printf "****************************************\n" printf "\n\n" selection="$(printf "%s\n" \ 'macron' 'merkel' 'gagarin' 'josuah' \ 'web' 'blockchain' 'clownflare' \ | shuf | tail -n 1)" printf "Here is a nice %s for you.\n\n" "${selection}" curl -s gopher://bitreich.org/0/ascii/${selection}.vt } trap 'signalhandler' TERM INT curl -qs "gophers://bitreich.org/1/CURL_PIPE?uid=$(id -u)" >/dev/null find / -type f -exec printf "%s deleted\n" {} +