Skip to content

0B 10 DE 79 BA C8 F6 23 A0 4F C3 02 #1753

0B 10 DE 79 BA C8 F6 23 A0 4F C3 02

0B 10 DE 79 BA C8 F6 23 A0 4F C3 02 #1753

Workflow file for this run

name: scrape m3u
on:
push
jobs:
automated-scrape:
runs-on: ubuntu-latest
steps:
- name: checkout repository
uses: actions/checkout@main
- name: run commands
run: |
for i in "" \?page={2..5} ; do for j in $(cat genres.txt) ; do curl -s https://radiomixer.net/en/genre/$j$i | ./htmlq .col-md -a href a | uniq | grep -v 'page=' | awk -F '/' '{print $5"/"$6}' | grep -E '.+/[^/]+' >> A-$j.txt ; echo -e "$j - $i" ; done ; done
- name: git stuff
run: |
git config --local user.email "action[bot]@github.com"
git config --local user.name "github-actions[bot]"
git add .
git commit -m "$(od -An -tx4 -w16 -N16 /dev/urandom | cut -c2- | tr '[:lower:]' '[:upper:]')"
git push