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

Re: Please tell me.



>But if I want to know what 'ls' I'm using, in tcsh,
>I type 'which \ls' and this worked just what I want to know. 
>But in zsh, it doesn't work like this. 

Use the -p option to which in order to force a path search:

% alias ls='ls -F'
% which ls
ls: aliased to 'ls -F'
% which -p ls
/bin/ls

-zefram



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