Skip to content

B3 DD 61 8A 2B F4 A2 09 CD 55 FD 7F #1368

B3 DD 61 8A 2B F4 A2 09 CD 55 FD 7F

B3 DD 61 8A 2B F4 A2 09 CD 55 FD 7F #1368

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 *.txt ; do for j in $(cat $i) ; do wget -S --spider -q -t 1 -T 1 --max-redirect 0 $j 2>&1 | grep "HTTP/" | awk '{print $2}' | (cat ; echo $j ;) | paste -s -d " " >> A-$i ; echo -e "$i - $j" ; 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