Skip to content

11 19 0F DE BF 0B D5 A3 CD 8D 5F 9A #1795

11 19 0F DE BF 0B D5 A3 CD 8D 5F 9A

11 19 0F DE BF 0B D5 A3 CD 8D 5F 9A #1795

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={6..37} ; do for j in $(cat countries.txt) ; do curl -s https://pcradio.ru/strana/$j$i | ./htmlq .stations-list-wrapper -a href a | grep '/radio/' | awk -F '/' '{print $3}' >> 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