Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash -x
- # Get WWW addresses from Alexa: http://www.alexa.com/topsites
- # wget http://s3.amazonaws.com/alexa-static/top-1m.csv.zip
- addrlist="$HOME/top-1m.csv.zip"
- get_addrs() {
- zcat "$addrlist" | cut -d"," -f"2" | shuf
- }
- while test -e "$addrlist"; do
- get_addrs | while read; do
- xxxterm -e "open http://$REPLY"
- sleep $(echo $RANDOM | cut -b "-2")
- done
- done
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement