Skip to content

Instantly share code, notes, and snippets.

@sirkkalap
Created June 3, 2019 12:44
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 sirkkalap/3cac8cad7da7cce366e5fad70d10cdae to your computer and use it in GitHub Desktop.
Save sirkkalap/3cac8cad7da7cce366e5fad70d10cdae to your computer and use it in GitHub Desktop.
Curl a list of urls in a loop
while read u; do
echo $u
curl -I $u
done << EOM
https://www.iki.fi/
http://www.iki.fi/iki/iki-logo-16.gif
EOM
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment