Zsh Mailing List Archive
Messages sorted by: Reverse Date, Date, Thread, Author

Re: Can't get tricky csh alias to work



Jose Unpingco writes:

> I'm just getting into zsh and I have an alias from cshrc:
> 
>   alias ff   'find . -name "\!*" -print'
> 
> that I can't get converted to zsh.

Define it as a function instead of an alias

function ff { find . -name "$@" -print }

...and everything should work fine...

Dave



Messages sorted by: Reverse Date, Date, Thread, Author