Bash – How to Remove Alias from Current Session

aliassession

How to remove a alias from current session without closing that session?

Best Answer

Supposing that your alias to python is py, do:

$ unalias py

(via)

Related Question