Created
December 8, 2019 05:30
-
-
Save notthetup/096c453c74766f1e852b68353fe6d85a to your computer and use it in GitHub Desktop.
Get URLs from list of google search terms
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
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