1 #!/bin/sh 2 3 # downloads a list of images given as input 4 5 [ -z "$1" ] && exit 1 6 7 while read line; do url="$line"; imgname=$(echo "$url" | cut -d "/" -f 12); \ 8 curl -# $url > $imgname; echo "\nDownloading: $imgname"; done < $1
![]() | repos/scriptsSimple scripts that I made for my personal computer to map keys, make bluetooth work, brightness keys, etc. |