You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
237 B
14 lines
237 B
2 years ago
|
#/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;
|