diff --git a/run.sh b/run.sh new file mode 100644 index 0000000..b0c9ca0 --- /dev/null +++ b/run.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +SOURCELINK="https://www.plastic-bomb.eu/2021/es-gibt-aber-auch-kaum-bands-in-denen-frauen-spielen/"  ✔  took 8m 59s  at 14:04:10 + +for i in $(curl "$SOURCELINK" | grep bandcamp | sed -n 's/.*href="\([^"]*\).*/\1/p'| sed 's/.com.*/.com/g'); + do + for ilink in $(curl $i | grep "\"/album" | sed -n 's/.*href="\([^"]*\).*/\1/p'| sort | uniq); do + echo $i$ilink; + done +done > /tmp/foobar.txt