added a script to automatically download files from a wiredrive link

master
jorgevasquezp 6 years ago
parent 35213a8f68
commit 50a6e77395

@ -0,0 +1,7 @@
#/usr/bin/bash
for i;
do
link=$(curl $i | grep -o --color=auto 'http[^"]*\=view' | sed 's,\\,,g');
wget $link;
done
for i in *mp4*; do mv $i ${i%\?*}; done
Loading…
Cancel
Save