Skip to content

Instantly share code, notes, and snippets.

@obsessedcake
Created April 14, 2024 04:15
Show Gist options
  • Save obsessedcake/40abb9bf99be3dba70852b5196a3b16a to your computer and use it in GitHub Desktop.
Save obsessedcake/40abb9bf99be3dba70852b5196a3b16a to your computer and use it in GitHub Desktop.
A bunch of simple bash functions to dowload links listed in files.
function dl {
return 0
}
function dl-sort {
return 0
}
function dl {
mkdir $1
cd $1
wget -i ../$1.txt
cd ..
}
function dl-sort {
mkdir $1
cd $1
cat ../$1.txt | sort -u | wget -i -
cd ..
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment