Skip to content

Commit

Permalink
Update wordlist.yml
Browse files Browse the repository at this point in the history
Adding new google trends RSS
  • Loading branch information
clem9669 authored Jan 6, 2025
1 parent 4232928 commit 6908d7e
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/wordlist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,24 @@ jobs:
- name: Update & install xmllint
run: sudo apt update && sudo apt-get install libxml2-utils curl -y

- name: Run a one-line script FR
- name: Run a one-line script FR - old RSS feed google
run: curl -s 'https://trends.google.com/trends/trendingsearches/daily/rss?geo=FR' | xmllint --xpath "//item/title" - | sed -e 's/<[^>]*>//g' >> news_FR

- name: Run a one-line script BE
- name: Run a one-line script BE - old RSS feed google
run: curl -s 'https://trends.google.com/trends/trendingsearches/daily/rss?geo=BE' | xmllint --xpath "//item/title" - | sed -e 's/<[^>]*>//g' >> news_BE

- name: Run a one-line script CH
- name: Run a one-line script CH - old RSS feed google
run: curl -s 'https://trends.google.com/trends/trendingsearches/daily/rss?geo=CH' | xmllint --xpath "//item/title" - | sed -e 's/<[^>]*>//g' >> news_CH

- name: Run a one-line script FR
run: curl -s 'https://trends.google.com/trending/rss?geo=FR' | xmllint --xpath "//item/title" - | sed -e 's/<[^>]*>//g' >> news_FR

- name: Run a one-line script BE
run: curl -s 'https://trends.google.com/trending/rss?geo=BE' | xmllint --xpath "//item/title" - | sed -e 's/<[^>]*>//g' >> news_BE

- name: Run a one-line script CH
run: curl -s 'https://trends.google.com/trending/rss?geo=CH' | xmllint --xpath "//item/title" - | sed -e 's/<[^>]*>//g' >> news_CH

- name: Permutations options
run: |
cat news_FR news_BE news_CH | awk '{print tolower($0)}' > news_lower;
Expand Down

0 comments on commit 6908d7e

Please sign in to comment.