Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/sh
- while sleep 1; do
- curl -s http://www.santiebeati.it/$(grep -ao '[A-Z]' /dev/urandom |head -1)/ |awk -F'>|</' '/title/{print $6}' >/tmp/santi.$$
- curl -s -A Firefox "http://translate.google.com/translate_tts?tl=it&q=$(echo "Mannaggia San $(sed -n $((RANDOM % $(wc -l </tmp/santi.$$)))p /tmp/santi.$$)" |sed 's/ /+/g')" >/tmp/santo-$$.mp3
- afplay /tmp/santo-$$.mp3
- rm -f /tmp/santi.$$ /tmp/santo-$$.mp3
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement