Skip to content

Instantly share code, notes, and snippets.

@Antrikshy
Created August 11, 2016 07:20
Show Gist options
  • Save Antrikshy/8272bb1972fd1b6f080af4ae0eeaa272 to your computer and use it in GitHub Desktop.
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?
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