In nearly all Linux distro’s, you can set aliases. I thought I’d share what ones I use at the moment!
1 | alias get="sudo apt-get install" |
In order to make sure this gets enforced every terminal session, I simply add this to my bashrc file:
1 | AliasContents=`cat ./.bash_aliases` |