10 lines
512 B
Bash
10 lines
512 B
Bash
#!/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
|