Common Shell scripts for everyday use
- Installing chrome on a new Ubuntu system is laborious: download it, enable the right repos, get gdebi, …
- This script automate that
wget https://raw.github.com/lazyposse/common-sh/master/install-chrome.sh
chmod +x install-chrome.sh
./install-chrome.sh
- Installing Emacs24 a new Ubuntu system is laborious: trust the PPA, add the PPA, update the sources, …
- This script automate that
- Add a new repo and PPA for Emacs 24 snapshot
- Install Emacs 24 snapshot
- Install emacs-starter-kit
- Setup emacs-starter-kit (in particular it setup clojure-mode)
wget https://raw.github.com/lazyposse/common-sh/master/install-emacs24.sh
chmod +x ./install-emacs24.sh
./install-emacs24.sh
- Syncing a fork with the main repo is repetitive
- This script automate that
cd fork-dir
git-upstream-sync.sh