scripts/mfd.sh

13 lines
310 B
Bash
Raw Normal View History

2012-01-28 07:14:33 +00:00
#! /bin/bash
#echo Mediafire Download Script using Plowdown + Axel
#echo Usage mfd URL [num]
url=$1
if [ ${url:0:4} != http ]; then
url="http://$url"
fi
#echo ${url:0:4}
echo Downloading $url
plowdown -p mtvz --run-download="axel -n 20 -a %url" $url
#Plowdown using axel and 10 threads to download the url