On Thu, Jan 30, 2003 at 06:37:04AM -0600, Elizabeth Barham wrote: > Perhaps renaming wget something, say "real-wget" and replacing "wget" > with a script will do the trick: > > #/bin/sh > real-wget --passive-ftp $*
An easy way to do that kind of thing without needing to rename anything
is:
wget () {
command wget --passive-ftp "$@"
}
--
Colin Watson [[EMAIL PROTECTED]]
--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

