Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
autoloaded functions through |
- X-seq: zsh-workers 2874
- From: mason@xxxxxxxxxxxxxxx (G C Wing)
- To: zsh-workers@xxxxxxxxxxxxxxx
- Subject: autoloaded functions through |
- Date: 5 Feb 1997 19:23:10 +1100
- Organization: PrimeNet
- Sender: gwing@xxxxxxxxxxxxxxxxxxxxx
Well, looks like a bug. (zsh 3.0.3-test3)
% echo "echo this is ls" > fbin/ls # fbin is in FPATH
% autoload ls
% which -a ls
undefined ls () { }
/bin/ls
% ls | cat
this is ls
% which -a ls
undefined ls () { }
/bin/ls
% ls
this is ls
% which -a ls
ls () {
echo worked OK
}
/bin/ls
--
Geoff Wing [gwing@xxxxxxxxxxxxxxx] Technical Manager
Phone : +61-3-9818 2977 PrimeNet - Internet Consultancy
Facsimile: +61-3-9819 3788 Web : <URL:http://www.primenet.com.au/>
Mobile : 0412 162 441
Messages sorted by:
Reverse Date,
Date,
Thread,
Author