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

Re: Can't get tricky csh alias to work



>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.

ff () { find . -name "$*" -print }

-zefram



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