Skip to content

Instantly share code, notes, and snippets.

@mansouryaacoubi
Last active September 10, 2017 16:32
Show Gist options
  • Save mansouryaacoubi/0582fe108f699956c677b95e24c71e9a to your computer and use it in GitHub Desktop.
Save mansouryaacoubi/0582fe108f699956c677b95e24c71e9a to your computer and use it in GitHub Desktop.
Download Raspberry Pi Tools (update, setup, wifi, etc...)
#!/bin/bash
# @usage bash <(curl -s https://gist.githubusercontent.com/mansouryaacoubi/0582fe108f699956c677b95e24c71e9a/raw/73c7ce97257eb76a4d2c3a1b4c7243f8efdf0355/dl-tools.sh)
cd ~
echo "download .bash_aliases"
wget https://gist.githubusercontent.com/mansouryaacoubi/e3454417d57858dec9273e5503132670/raw/81f0e701d9114e9a8bd6fc94a71f0d7499acb884/.bash_aliases >/dev/null 2>&1
echo " create directory tools"
mkdir tools
echo " change directory"
cd tools
echo "download update-rpi.sh"
wget https://gist.githubusercontent.com/mansouryaacoubi/08a8e6a2465e77352cea6cf924414744/raw/e92f7ffe4741a38fde6043c34984a646271b82e1/update-rpi.sh >/dev/null 2>&1
echo "download addwifi.sh"
wget https://gist.githubusercontent.com/mansouryaacoubi/d44ad218d87f941a58491b6e05b81dba/raw/8e0ad153903915bad6f7ae9f5096a4bf18c78847/addwifi.sh >/dev/null 2>&1
echo "download raspi_setup.sh"
wget https://gist.githubusercontent.com/mansouryaacoubi/69a4af83069f61e31a9712963164e2c0/raw/00c7d5390d519bc8ca79d0ba01ad1cc33ac10e10/raspi_setup.md >/dev/null 2>&1
chmod +x *.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment