With zsh I can do this to delete all aliases:
% unalias $( alias + )
I am looking for the equivalent in bash.
With zsh I can do this to delete all aliases:
% unalias $( alias + )
I am looking for the equivalent in bash.
unalias -a
according to the man page.
\unalias -a for a case where unalias also alias-ed for something else :D
– αғsнιη
Jul 06 '19 at 12:00
unalias -a– Cyrus Jul 06 '19 at 06:29