0

With zsh I can do this to delete all aliases:

% unalias $( alias + )

I am looking for the equivalent in bash.

Jeff Schaller
  • 67,283
  • 35
  • 116
  • 255
kjo
  • 15,339
  • 25
  • 73
  • 114

1 Answers1

4
unalias -a

according to the man page.

NickD
  • 2,926