delorie.com/archives/browse.cgi | search |
X-Recipient: | archive-cygwin AT delorie DOT com |
X-SWARE-Spam-Status: | No, hits=-2.5 required=5.0 tests=AWL,BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,FREEMAIL_FROM,RCVD_IN_DNSWL_LOW |
X-Spam-Check-By: | sourceware.org |
Message-ID: | <4EFD54D1.9080508@gmail.com> |
Date: | Fri, 30 Dec 2011 06:06:09 +0000 |
From: | Dave Korn <dave DOT korn DOT cygwin AT gmail DOT com> |
User-Agent: | Thunderbird 2.0.0.17 (Windows/20080914) |
MIME-Version: | 1.0 |
To: | cygwin AT cygwin DOT com |
Subject: | Re: SHELLOPTS=igncr and bash --posix |
References: | <4EFCDE35 DOT 4040302 AT cpan DOT org> |
In-Reply-To: | <4EFCDE35.4040302@cpan.org> |
X-IsSubscribed: | yes |
Mailing-List: | contact cygwin-help AT cygwin DOT com; run by ezmlm |
List-Id: | <cygwin.cygwin.com> |
List-Subscribe: | <mailto:cygwin-subscribe AT cygwin DOT com> |
List-Archive: | <http://sourceware.org/ml/cygwin/> |
List-Post: | <mailto:cygwin AT cygwin DOT com> |
List-Help: | <mailto:cygwin-help AT cygwin DOT com>, <http://sourceware.org/ml/#faqs> |
Sender: | cygwin-owner AT cygwin DOT com |
Mail-Followup-To: | cygwin AT cygwin DOT com |
Delivered-To: | mailing list cygwin AT cygwin DOT com |
On 29/12/2011 21:40, Rafael Kitover wrote: > Some of my bash scripts, particularly ones that are #!/bin/bash --posix > trigger a nasty warning when I have SHELLOPTS=igncr set in my ~/.zshrc: > > rkitover AT eeebox ~/src/scala % echo $SHELLOPTS > igncr > rkitover AT eeebox ~/src/scala % bash --posix > bash: SHELLOPTS: readonly variable > > this is rather unsightly so I have turned off SHELLOPTS for now. > > Is this a bug? Bug in your script I'm afraid. SHELLOPTS is indeed a readonly variable, it can only be set outside bash before starting it, definitely not from within a startup script. (Perhaps the reason it seems associated with --posix is because that selects different startup files? I'm guessing that you may have ENV=~/.zshrc because it's not normal behaviour for bash to read zsh's startup file!) > If so, is a fix possible? Use "set -o igncr" instead. cheers, DaveK -- Problem reports: http://cygwin.com/problems.html FAQ: http://cygwin.com/faq/ Documentation: http://cygwin.com/docs.html Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |