This is the mail archive of the cygwin@cygwin.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

Re: ls -R doesn't work; V1.3.12 on Win2000


On 6-7-2002 22:12, Christopher Faylor wrote:

 find . -iname '*.doc' | xargs ls -ld

Since there will most likely be file names with spaces (bah!) you'd need to do something like:

find . -iname '*.doc' -print0 | xargs -0 ls -ld

- Michael


--
Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple
Bug reporting: http://cygwin.com/bugs.html
Documentation: http://cygwin.com/docs.html
FAQ: http://cygwin.com/faq/



Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]