Skip to content

Instantly share code, notes, and snippets.

@thejmazz
Last active August 29, 2015 14:22
Show Gist options
  • Save thejmazz/656f943d0abfde487847 to your computer and use it in GitHub Desktop.
Save thejmazz/656f943d0abfde487847 to your computer and use it in GitHub Desktop.
Bash script for installing some packages provided by aptitude
#!/bin/bash
sudo apt-get update
sudo apt-get upgrade
programs="gcc curl git xclip"
for prog in $programs; do
sudo apt-get install $prog
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment