Last active
October 31, 2017 16:28
-
-
Save finnigja/e8482ce58c32572a9d3ace2fdc4d2f49 to your computer and use it in GitHub Desktop.
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
#!/bin/sh | |
# https://aws.amazon.com/blogs/security/how-to-prepare-for-aws-move-to-its-own-certificate-authority/ | |
declare -a arr=("https://good.sca1a.amazontrust.com/" "https://good.sca2a.amazontrust.com/" "https://good.sca3a.amazontrust.com/" "https://good.sca4a.amazontrust.com/" "https://good.sca0a.amazontrust.com/" "https://starfieldtech.com/") | |
for i in "${arr[@]}" | |
do | |
echo $i | |
curl -s -o /dev/null -w "\t%{http_code}\n" $i | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment