added a script to automatically download files from a wiredrive link

This commit is contained in:
jorgevasquezp
2020-01-23 15:19:42 -08:00
parent 35213a8f68
commit 50a6e77395
Executable
+7
View File
@@ -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