Created
August 11, 2016 07:20
-
-
Save Antrikshy/8272bb1972fd1b6f080af4ae0eeaa272 to your computer and use it in GitHub Desktop.
Tired of manually trudging through website source code for easter eggs and invitations to apply for jobs?
This file contains 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
declare -a arr=("google.com" "facebook.com" | |
"amazon.com" "yahoo.com" "flickr.com" | |
"youtube.com" "twitter.com" "reddit.com") # etc etc | |
for i in "${arr[@]}" | |
do | |
echo "$i" | |
curl -L --silent "$i" | grep -E "hiring|jobs" | |
# Maybe even look for easter eggs this way! | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment