Skip to content

Instantly share code, notes, and snippets.

@jasonmccallister
Created April 1, 2016 04:08
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 jasonmccallister/eb26047b1f78cd5be5fd45210ef2de93 to your computer and use it in GitHub Desktop.
Save jasonmccallister/eb26047b1f78cd5be5fd45210ef2de93 to your computer and use it in GitHub Desktop.
Bash script that curls each URL from a text file.
while read p; do
curl -I $p
done <file_with_urls.txt
https://www.google.com
https://www.microsoft.com
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment