BASH cheatsheet: Difference between revisions

From eddynetweb's cesspit
Jump to navigation Jump to search
(Yeah, this page...)
 
mNo edit summary
Line 7: Line 7:
To unalias:  
To unalias:  


<source lang="bash"
<source lang="bash">
unalias ["command"]
unalias ["command"]
</source>
</source>

Revision as of 19:23, 8 March 2017

It's basically stupid simple:

alias ["command"]=["origin"]

To unalias:

unalias ["command"]

Why? I asked the question "how do I unalias a command" and well, yeah.

Enjoy!