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: Problems with find -exec somecommand | tosomeother command


Assuming none of the files have any spaces in their
names, the following would be faster (and works).
  wc -l `find . -name \*.frm -print`

- Barry

-----Original Message-----
From: Sheryl McKeown [mailto:iboulder@yahoo.com]
Sent: Friday, October 04, 2002 2:39 pm
To: cygwin@cygwin.com
Subject: Problems with find -exec somecommand |
tosomeother command

Hello,

I'm attempting to find the number of lines in each
file of a source directory.

Using bash, I'm using the following command:

find . -name "*.frm" -exec cat -n {} | tail -n1 \;
but it returns the error 

cfind: missing argument to `-exec'
tail: ;: No such file or directory

I've tried various quoting schemes but I can't seem to
get it to work.

I am running XP Prof SP1.

Any help is appreciated.

-Sheryl


__________________________________________________
Do you Yahoo!?
New DSL Internet Access from SBC & Yahoo!
http://sbc.yahoo.com

--
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]