Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: Autoloaded bash shell scripts treated as zsh
- X-seq: zsh-users 8565
- From: Peter Stephenson <pws@xxxxxxx>
- To: zsh-users@xxxxxxxxxx
- Subject: Re: Autoloaded bash shell scripts treated as zsh
- Date: Tue, 08 Mar 2005 10:26:18 +0000
- In-reply-to: <6kuq215kpsui4qe9q13ed3dmoo64hd1loh@xxxxxxx>
- Mailing-list: contact zsh-users-help@xxxxxxxxxx; run by ezmlm
- References: <loom.20050308T002806-601@xxxxxxxxxxxxxx> <1050308060521.ZM1835@xxxxxxxxxxxxxxxxxxxxxxx> <6kuq215kpsui4qe9q13ed3dmoo64hd1loh@xxxxxxx>
zzapper wrote:
> BTW what's the best way to reload/unload a shell function you are working on?
I've had this function for ages.
reload() {
if (( $# == 0 )); then
print "Reload what?" >&2
return 1
fi
while (( $# )); do
unfunction $1 && autoload $1
shift
done
}
--
Peter Stephenson <pws@xxxxxxx> Software Engineer
CSR PLC, Churchill House, Cambridge Business Park, Cowley Road
Cambridge, CB4 0WZ, UK Tel: +44 (0)1223 692070
**********************************************************************
This email and any files transmitted with it are confidential and
intended solely for the use of the individual or entity to whom they
are addressed. If you have received this email in error please notify
the system manager.
**********************************************************************
Messages sorted by:
Reverse Date,
Date,
Thread,
Author