Last active
February 5, 2019 08:26
-
-
Save iRhonin/125e9559569f521a1415771d384c68cd to your computer and use it in GitHub Desktop.
Download from file contains list of urls
This file contains 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
echo "function download_from_file() { | |
while IFS='' read -r line || [[ -n \$line ]]; | |
do axel \$line \${@:2} | |
done < \$1 | |
}" >> ~/.bashrc | |
source ~/.bashrc |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment