bug-bash
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: unalias from within a subshell does not work?


From: Wilhelm Mueller
Subject: Re: unalias from within a subshell does not work?
Date: 17 Dec 2001 14:41:03 +0100

aliases are expanded during parsing, so even this will still echo y:

alias x=echo
f () { x y; }
unalias f
f

 -- Wilhelm



reply via email to

[Prev in Thread] Current Thread [Next in Thread]