Skip to content

Instantly share code, notes, and snippets.

@notthetup
Created December 8, 2019 05:30
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 notthetup/096c453c74766f1e852b68353fe6d85a to your computer and use it in GitHub Desktop.
Save notthetup/096c453c74766f1e852b68353fe6d85a to your computer and use it in GitHub Desktop.
Get URLs from list of google search terms
while IFS= read -r line; do googler -n1 --json "$line" 2>/dev/null | jq -r '.[].url'; done < terms.txt
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment