Skip to content

Instantly share code, notes, and snippets.

@cvializ
Created January 22, 2016 20:47
Show Gist options
  • Save cvializ/773054bdcc2de3390660 to your computer and use it in GitHub Desktop.
Save cvializ/773054bdcc2de3390660 to your computer and use it in GitHub Desktop.
Grab a list of random Wikipedia URLs from the command line
for i in $(seq 1 20); do
curl -sIL http://en.wikipedia.org/wiki/Special:Random | perl -n -e '/^Location: (.*)$/ && print "$1\n"' | tail -n 1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment