How to define/undefine an alias/function in bash
So many interesting things to learn here.
I knew about aliases and use them all the time. I had forgotten how to undefine them though, so ...
alias
Here is how to define one:
alias someaction="some sort of action or something here"
You use it like you'd expect. At …