Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- hilo=https://8chan.moe/ac/res/1.html
- # Descargamos el html del hilo y los elementos embebidos
- wget --referer 8chan.moe -N --convert-links --page-requisites $hilo
- # Hacemos que el hilo se pueda acceder de manera local
- hilo_local=$(echo $hilo | cut -d"/" -f3-);
- # Descargamos los archivos subidos al hilo
- wget --referer 8chan.moe -N --mirror $(grep -o -i -P 'href=".+/.media/[^"]+' $hilo_local | sed 's/href="//g' | sort -u)
- # Hacemos que el html apunte a los archivos guardados con el comando anterior
- sed -i 's/\(href="\).\+\(\/.media\/[^"]\+\)/\1..\/..\2/g' $hilo_local
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement