From nobody Tue Jun 08 16:08:23 2021 X-Original-To: bugs@mlmmj.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mlmmj.nyi.freebsd.org (Postfix) with ESMTP id 49796F788F5 for ; Tue, 8 Jun 2021 16:08:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256 client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "R3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 4FzwBv1XwSz3jJR for ; Tue, 8 Jun 2021 16:08:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org (kenobi.freebsd.org [IPv6:2610:1c1:1:606c::50:1d]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 1E6D64047 for ; Tue, 8 Jun 2021 16:08:23 +0000 (UTC) (envelope-from bugzilla-noreply@freebsd.org) Received: from kenobi.freebsd.org ([127.0.1.5]) by kenobi.freebsd.org (8.15.2/8.15.2) with ESMTP id 158G8NGR067380 for ; Tue, 8 Jun 2021 16:08:23 GMT (envelope-from bugzilla-noreply@freebsd.org) Received: (from www@localhost) by kenobi.freebsd.org (8.15.2/8.15.2/Submit) id 158G8Nrj067379 for bugs@FreeBSD.org; Tue, 8 Jun 2021 16:08:23 GMT (envelope-from bugzilla-noreply@freebsd.org) X-Authentication-Warning: kenobi.freebsd.org: www set sender to bugzilla-noreply@freebsd.org using -f From: bugzilla-noreply@freebsd.org To: bugs@FreeBSD.org Subject: [Bug 256473] FreeBSD shells are case insensitive for character ranges Date: Tue, 08 Jun 2021 16:08:23 +0000 X-Bugzilla-Reason: AssignedTo X-Bugzilla-Type: changed X-Bugzilla-Watch-Reason: None X-Bugzilla-Product: Base System X-Bugzilla-Component: bin X-Bugzilla-Version: 12.2-STABLE X-Bugzilla-Keywords: X-Bugzilla-Severity: Affects Some People X-Bugzilla-Who: se@FreeBSD.org X-Bugzilla-Status: Open X-Bugzilla-Resolution: X-Bugzilla-Priority: --- X-Bugzilla-Assigned-To: bugs@FreeBSD.org X-Bugzilla-Flags: X-Bugzilla-Changed-Fields: Message-ID: In-Reply-To: References: Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable X-Bugzilla-URL: https://bugs.freebsd.org/bugzilla/ Auto-Submitted: auto-generated List-Id: Bug reports List-Archive: https://lists.freebsd.org/archives/freebsd-bugs List-Help: List-Post: List-Subscribe: List-Unsubscribe: Sender: owner-freebsd-bugs@freebsd.org MIME-Version: 1.0 X-ThisMailContainsUnwantedMimeParts: N https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=3D256473 --- Comment #4 from Stefan E=C3=9Fer --- (In reply to Jason W. Bacon from comment #2) > I created a simple test case to reduce noise in this thread, and things g= ot weirder: >=20 > Default shell is tcsh. >=20 > FreeBSD coral.acadix bacon ~/Test 1032: ls > aardvark Alan Bob zip >=20 > FreeBSD coral.acadix bacon ~/Test 1033: ls -d [A-Z]* Alan Bob zip This is to be expected. The sequence is: "AaBb..Zz" and you are selecting f= or all initial letters except for the files starting with "z" (which comes aft= er "Z"). > FreeBSD coral.acadix bacon ~/Test 1034: ls -d [a-z]* > aardvark Alan Bob zip This is to be expected. The sequence is as above and you are selecting for = all except those starting with "A" (which is "to the left" of "a"). > FreeBSD coral.acadix bacon ~/Test 1035: bash > [bacon@coral ~/Test]$ ls -d [A-Z]* > Alan Bob >=20 > [bacon@coral ~/Test]$ ls -d [a-z]* > aardvark zip > [/quote] This is the behavior of BASH if the "globasciiranges" shell option is set to on. Check this with the following command: $ shopt globasciiranges globasciiranges on This is an off by default option according to the bash man-page, but appare= ntly set in your environment. With this variable set to off, bash behaves exactly like the other shells. --=20 You are receiving this mail because: You are the assignee for the bug.=