#/usr/bin/env bash if [[ ! $1 ]]; then i=1; else i=$1 fi cd "$HOME/Images/Wallpapers/test" while [[ $i -gt 0 ]]; do wget https://source.unsplash.com/random/1920x1080 -O $(echo $RANDOM |md5sum | head -c 8) ((i--)) done;