Zsh Mailing List Archive
Messages sorted by:
Reverse Date,
Date,
Thread,
Author
Re: init files
- X-seq: zsh-users 1719
- From: "Bart Schaefer" <schaefer@xxxxxxxxxxxxxxxx>
- To: Sweth Chandramouli <sweth@xxxxxxxxxxxxxxxxxxxx>, ZSH Users <zsh-users@xxxxxxxxxxxxxxx>
- Subject: Re: init files
- Date: Sat, 15 Aug 1998 10:24:25 -0700
- In-reply-to: <980809205100.ZM24722@xxxxxxxxxxxxxxxxxxxxxxx>
- References: <19980809150805.47993@xxxxxxxxxxxxxxxxxxxx> <980809150442.ZM21544@xxxxxxxxxxxxxxxxxxxxxxx> <19980809210204.33286@xxxxxxxxxxxxxxxxxxxx> <980809205100.ZM24722@xxxxxxxxxxxxxxxxxxxxxxx>
On Aug 9, 8:51pm, I wrote:
} Subject: Re: init files
}
} [1] DEFAULT--rc-enabled shell => RCS
} unless
} `-f' flag present on shell invocation => NO_RCS
} unless
} `+f' flag present on shell invocation => RCS
} unless
} ( `unsetopt RCS' called in /etc/zshenv => NO_RCS
} or
} `setopt RCS' called in /etc/zshenv => RCS )
}
} Note that there are two "oddities" here: First, +f always wins over -f
This turns out not to be true; I was misled by some setopts in /etc/zshenv,
which I've since deleted. It should read:
[1] DEFAULT--rc-enabled shell => RCS
unless
( `-f' flag present on shell invocation => NO_RCS
or
`+f' flag present on shell invocation => RCS )
unless
( `unsetopt RCS' called in /etc/zshenv => NO_RCS
or
`setopt RCS' called in /etc/zshenv => RCS )
--
Bart Schaefer Brass Lantern Enterprises
http://www.well.com/user/barts http://www.brasslantern.com
Messages sorted by:
Reverse Date,
Date,
Thread,
Author