I need to run these commands very often:
sudo apt-get install <package>
sudo apt-get remove <package>
Can I make it simple like:
install <package>
remove <package>
I think I need to write a function like this:
function install(){
sudo apt-get install <package>
}
...and then need to copy paste to some location i don't know. Can anyone tell me how can I make such an install <package> command available all the time after boot?
