Mailing-List: contact cygwin-help@sourceware.cygnus.com; run by ezmlm
List-Unsubscribe: <mailto:cygwin-unsubscribe-archive-cygwin=delorie.com@sourceware.cygnus.com>
List-Subscribe: <mailto:cygwin-subscribe@sourceware.cygnus.com>
List-Archive: <http://sourceware.cygnus.com/ml/cygwin/>
List-Post: <mailto:cygwin@sourceware.cygnus.com>
List-Help: <mailto:cygwin-help@sourceware.cygnus.com>,
	<http://sourceware.cygnus.com/ml/#faqs>
Sender: cygwin-owner@sourceware.cygnus.com
Delivered-To: mailing list cygwin@sourceware.cygnus.com
To: "cygwin@sourceware.cygnus.com" <cygwin@sourceware.cygnus.com>
Date: Wed, 25 Aug 1999 06:08:52 -0700
From: " Clark Sims " <clarksimsgnu@my-Deja.com>
Message-ID: <PDGENBLLHCGCCAAA@my-deja.com>
Mime-Version: 1.0
X-Sent-Mail: off
X-Mailer: MailCity Service
Subject: Re: How do I list subdirectories?
X-Sender-Ip: 209.246.58.190
Organization: My Deja Email  (http://www.my-deja.com:80)
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

 
--

On Wed, 25 Aug 1999 05:25:34   Earnie Boyd wrote:
>---  Clark Sims  <clarksimsgnu@my-Deja.com> wrote:
>>  In the FSF version of bash
>> ls -F | egrep *\/
>> listed all of the subdirectories of the current working
>> directory.
>> In the Cygwin version the same command produces no
>> output.
>> 
>> How do I list the subdirectories of the current working
>> directory?
>> 
>
>Doesn't the egrep need to be `egrep .*\/'?  The period indicates any character,
>the * indicates any number of the preceding character.  Therefore to match what
>you want you need to specify .* to mean any number of any character.
>

Nice try but 
ls -F | egrep .*\/ 
doesn't work.
I agree that it ought to. I don't understand why it
doesn't.

However Kim Poulsen found a command that does work:
ls -F | egrep \/

It seems that this is a question on pattern matching.
It seems to me that a directory which is mached by:
\/
should also be matched by
*\/
and 
.*\/

Maybe I will understand the difference in
interpretations as I become more familiar
with Cygwin. Untill then I am stumped.

Thanks,

Clark


--== Sent via Deja.com http://www.deja.com/ ==--
Share what you know. Learn what you don't.

--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com

