Reputation: 2093
I created a test "alias" in cmDer
alias testalias = "dir * a ".
How to remove the alias I created?
Upvotes: 4
Views: 3295
Reputation: 1999
If the alias isn't gone after restarting your console, it means that it got created permanent.
Removing a created alias is pretty simple, you just need to execute the following command:
alias /d [alias name]
In your case will be something like:
alias /d testalias
Also, if you didn't change the default alias that are created when you unzip the app, you can simple rely on another alias which is:
unalias [alias name]
Hope this helps
PS: if you want to see which are your available aliases, just execute alias
and you will get them
Upvotes: 12