Skip to content

Instantly share code, notes, and snippets.

@lonnen
Created October 10, 2014 18:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lonnen/5efe04567accd68ca2e7 to your computer and use it in GitHub Desktop.
Save lonnen/5efe04567accd68ca2e7 to your computer and use it in GitHub Desktop.
curl a url forever
# usage: ./curler.sh http://whatever.url.biz
# will run until ctr-C is executed
while [ true ]
do
curl -LI $1
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment