#!/bin/sh DIRECTORIES=( /home/$USER/Pictures /home/$USER/Desktop /home/$USER/Templates /home/$USER/python_games /home/$USER/Documents /home/$USER/Documents /home/$USER/Music) for dir in $DIRECTORIES; do mkdir -p $dir; done wget https://raw.githubusercontent.com/raspberrypilearning/pacman-terminal/master/en/resources/8linky.txt -P "/home/$USER/Pictures" wget https://raw.githubusercontent.com/raspberrypilearning/pacman-terminal/master/en/resources/PiNkY.txt -P "/home/$USER/Desktop" wget https://raw.githubusercontent.com/raspberrypilearning/pacman-terminal/master/en/resources/1nky.txt -P "/home/$USER/Templates" wget https://raw.githubusercontent.com/raspberrypilearning/pacman-terminal/master/en/resources/CLYDE.txt -P "/home/$USER/python_games" wget https://raw.githubusercontent.com/raspberrypilearning/pacman-terminal/master/en/resources/sp00ky.txt -P "/home/$USER/Documents" wget https://raw.githubusercontent.com/raspberrypilearning/pacman-terminal/master/en/resources/funky.txt -P "/home/$USER/Documents" wget https://raw.githubusercontent.com/raspberrypilearning/pacman-terminal/master/en/resources/sue.txt -P "/home/$USER/Music"