运行脚本:
#!/bin/sh
# FlashGot Command line arguments template: [URL] [COMMENT] [FOLDER]if [ $# = 3 ]; thenecho "Make a folder."mkdir $3/$2echo "Make a shell task files."echo "axel -s 20000 -n 1 -a -o $2 $1" > $3/$2/task.shchmod +x $3/$2/task.shelseecho "Axeltask.sh error. Parameter counts is not 3."fi