From owner-freebsd-current@freebsd.org Fri Apr 7 08:52:01 2017 Return-Path: Delivered-To: freebsd-current@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 7D792D33669; Fri, 7 Apr 2017 08:52:01 +0000 (UTC) (envelope-from tsoome@me.com) Received: from st13p35im-asmtp001.me.com (st13p35im-asmtp001.me.com [17.164.199.64]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 53E391C48; Fri, 7 Apr 2017 08:52:01 +0000 (UTC) (envelope-from tsoome@me.com) Received: from process-dkim-sign-daemon.st13p35im-asmtp001.me.com by st13p35im-asmtp001.me.com (Oracle Communications Messaging Server 7.0.5.38.0 64bit (built Feb 26 2016)) id <0OO100C006Z3WF00@st13p35im-asmtp001.me.com>; Fri, 07 Apr 2017 08:51:48 +0000 (GMT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=me.com; s=4d515a; t=1491555108; bh=0r/8I7zssaEAPnYjknygpHravS5lNadyDTp8k0UKcII=; h=Content-type:MIME-version:Subject:From:Date:Message-id:To; b=Yt/3oGtJSkZw66D6BsQLY30hm450ue5hPJmKlFug71y2PogU579EkYZse1NfzBQtF jmWOw/6X+jZMaxTLfxLJqaeMiNftPRz9kuhInIb4f72iUQQKvZoOQF1EVzrVYqTr7P VjXDeLl4mqVFQ9qK7AxAQ5guheJCBiC0QSYhIMYx6rej913Xd1lHYloYV9FtvXY7/I 4Oyy8GE3I9nikB0PpQJWTsRx9B5EBhF6Z3xkkcjvy/Ea5fJ0r+FnDW8R4jL33ikaHq scvgirXffxwCHak9kSNkuBoDBBjXapofFkVYwzG5JsGDipkEmC8+0XujiyYMzueAKe UtPvhdBxOYyjw== Received: from icloud.com ([127.0.0.1]) by st13p35im-asmtp001.me.com (Oracle Communications Messaging Server 7.0.5.38.0 64bit (built Feb 26 2016)) with ESMTPSA id <0OO100JKP7A9WR30@st13p35im-asmtp001.me.com>; Fri, 07 Apr 2017 08:51:47 +0000 (GMT) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2017-04-07_08:,, signatures=0 X-Proofpoint-Spam-Details: rule=notspam policy=default score=0 spamscore=0 clxscore=1034 suspectscore=0 malwarescore=0 phishscore=0 adultscore=0 bulkscore=0 classifier=spam adjust=0 reason=mlx scancount=1 engine=8.0.1-1701120000 definitions=main-1704070077 Content-type: text/plain; charset=us-ascii MIME-version: 1.0 (Mac OS X Mail 10.3 \(3273\)) Subject: Re: problem with ls, not show a correct list From: Toomas Soome In-reply-to: <7a08478e-ee7c-70f6-1b52-bb966f47c594@freebsd.org> Date: Fri, 07 Apr 2017 11:51:43 +0300 Cc: =?utf-8?Q?Nilton_Jos=C3=A9_Rizzo?= , Allan Jude , FreeBSD Current , owner-freebsd-current@freebsd.org Content-transfer-encoding: quoted-printable Message-id: References: <25969d2c-6857-77a4-86a4-08b22f15cbfe@freebsd.org> <7a08478e-ee7c-70f6-1b52-bb966f47c594@freebsd.org> To: Andrey Chernov X-Mailer: Apple Mail (2.3273) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 07 Apr 2017 08:52:01 -0000 > On 7. apr 2017, at 11:29, Andrey Chernov wrote: >=20 >> Hi Allan, the ls show all files without case match >>=20 >> ls [a-z]* >>=20 >> show all files beginning with a and A like this [aA-zZ]* >=20 > No, last "Z" is not included. >=20 This is to define set of chars: { a, A-z, Z } ? A-z of course does not = make any sense;) Of course note that in few locales z is sorted after s, = meaning that list like that can be rather short;) rgds, toomas