Re: find command in cygwin

2005-05-01 Thread Shankar Unni
Igor Pechtchanski wrote: This message is produced by GNU find. "find -name a ." will result in such. Oops. (Crawl under rock..) -- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.ht

Re: find command in cygwin

2005-04-29 Thread Igor Pechtchanski
On Fri, 29 Apr 2005, Shankar Unni wrote: > lin q wrote: > > > $ find . -type f -print > > find: paths must precede expression > > Usage: find [-H] [-L] [-P] [path...] [expression] This message is produced by GNU find. "find -name a ." will result in such. > > Do you see anything wrong? > > > >

Re: find command in cygwin

2005-04-29 Thread Shankar Unni
lin q wrote: $ find . -type f -print find: paths must precede expression Usage: find [-H] [-L] [-P] [path...] [expression] Do you see anything wrong? $ which find /usr/bin/find This combo means that you have C:\Windows\System32 in your PATH environment before C:\cygwin\bin. Either flip these arou

RE: find command in cygwin

2005-04-27 Thread Kazuyuki Hagiwara
lin q schrieb: > $ find . -type f -print > find: paths must precede expression > Usage: find [-H] [-L] [-P] [path...] [expression] $ find -a . -type f -print find: paths must precede expression Usage: find [-H] [-L] [-P] [path...] [expression] $ $ uname -a CYGWIN_NT-5

Re: find command in cygwin

2005-04-27 Thread Oliver Vecernik
lin q schrieb: > $ find . -type f -print $ find . -type f -print ./.bashrc ./.bash_history ./.bash_profile . . . $ uname -a CYGWIN_NT-5.1 t636 1.5.15(0.127/4/2) 2005-04-18 12:20 i686 unknown unknown Cygwin Everything works as expected here. Which version are you using? Oliver -- Unsubscribe in

find command in cygwin

2005-04-27 Thread lin q
Hi, I am having a hard time running find command in cygwin, here is an example, $ find . -type f -print find: paths must precede expression Usage: find [-H] [-L] [-P] [path...] [expression] Do you see anything wrong? $ which find /usr/bin/find Thanks