Created
April 1, 2016 04:08
-
-
Save jasonmccallister/eb26047b1f78cd5be5fd45210ef2de93 to your computer and use it in GitHub Desktop.
Bash script that curls each URL from a text file.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| while read p; do | |
| curl -I $p | |
| done <file_with_urls.txt |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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