If you don't have Speed Download, you can still use curl to download the files, albeit at a much slower speed; just change the last command to pipe back into /usr/bin/curl instead of sdcli.
Enjoy.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# A simple script that downloads HD QuickTime movies from GameTrailers.com using Speed Download | |
# by Mr E | |
# | |
for i in $@ | |
do | |
/usr/bin/curl -sS $i | /usr/bin/grep -i \.mov\" | /usr/bin/cut -f2 -d\" | /usr/bin/xargs /usr/local/bin/sdcli add | |
done |
No comments:
Post a Comment