14 lines
228 B
Bash
14 lines
228 B
Bash
|
|
#!/bin/bash
|
||
|
|
#Get all mp4 mkv from an html
|
||
|
|
|
||
|
|
function indexdl(){
|
||
|
|
|
||
|
|
wget "$1" -q -O - | grep -Po "(?<=href=\")[^^\"]*[mp4|mkv]" > temp.txt
|
||
|
|
|
||
|
|
while read -r file; do
|
||
|
|
wget $1$file
|
||
|
|
done < temp.txt
|
||
|
|
}
|
||
|
|
|
||
|
|
indexdl $1
|