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.