Created
July 3, 2021 17:41
-
-
Save austinkeeley/e60fda6a21a02d7b4cee1ff0216d7dd8 to your computer and use it in GitHub Desktop.
Downloads all the Ubuntu wallpapers
This file contains hidden or 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
#!/bin/bash | |
distros="karmic lucid maverick natty oneiric precise quantal raring saucy trusty utopic vivid wily xenial yakkety zesty artful bionic cosmic disco eoan focal groovy hirsute" | |
cmd="apt install " | |
for d in $distros; do | |
echo "Downloading $d" | |
cmd="${cmd} ubuntu-wallpapers-${d}" | |
done | |
$cmd |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment