public inbox for cygwin@cygwin.com
 help / color / mirror / Atom feed
* Re: Problems with "find" and job control.
@ 1999-03-13 15:57 Suhaib M. Siddiqi
  1999-03-13 16:02 ` Corinna Vinschen
                   ` (2 more replies)
  0 siblings, 3 replies; 32+ messages in thread
From: Suhaib M. Siddiqi @ 1999-03-13 15:57 UTC (permalink / raw)
  To: David's Lightspeed Email, cygwin

>
>My "find" command does not seem to be working properly. Regardless of what
>options I give it, it always complains about the parameters being wrong.
>
>For example, here is a simple command:
>
>$ find . -name sh.exe -print

you are typing a wrong thing.  You need to put quotes around sh.exe.

find . -name "sh.exe" -print

The command you are typing is going to give you syntex error on a UNIX
machine too.

There is book called UNIX in Nutshell and is available at all the book
stores in the USA.  Perhaps that  may answer you several questions you
posted in previous mails.

Regards

Suhaib



>
>With parameters, it consistently tells me that "FIND: Parameter format not
>correct"
>Without parameters, it reports "required parameter missing"
>
>The command:
>$ find --help
>does not work either.
>
>------
>Now, as for job control, arent the "jobs", "bg", and "fg" commands a
>standard part of SH?
>I don't seem to have these in my distribution, and I could really use them.
>
>
>
>
>
>
>                                     David L. Painter
>                                     dpainter@prontomail.com
>                                     dpainter@lightspeed.net
>                                     ph: (559) 292-5366 * 3
>                                     fax:(559) 292-0410
>
>
>
>--
>Want to unsubscribe from this list?
>Send a message to cygwin-unsubscribe@sourceware.cygnus.com
>
>


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

^ permalink raw reply	[flat|nested] 32+ messages in thread
* Re: Problems with "find" and job control.
@ 1999-03-15  8:02 Suhaib M. Siddiqi
  1999-03-31 19:45 ` Suhaib M. Siddiqi
  0 siblings, 1 reply; 32+ messages in thread
From: Suhaib M. Siddiqi @ 1999-03-15  8:02 UTC (permalink / raw)
  To: Simao Campos; +Cc: David's Lightspeed Email, cygwin

----
.


>Dear all,
>
>I bet that his path is pointing to a win95/98/NT directory first, and
>"find" being invoked is not the GNU "find" but the Windows one. Try
"type
>find", if it is not the one in the Cygnus directory, that's the source
>of your problem.
>


Yes!!!!
We figure that out on Friday night.

Thanks
Suhaib

>Regards,
>Simao.
>


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

^ permalink raw reply	[flat|nested] 32+ messages in thread
* RE: Problems with "find" and job control.
@ 1999-03-13 17:33 Sergey Okhapkin
  1999-03-31 19:45 ` Sergey Okhapkin
  0 siblings, 1 reply; 32+ messages in thread
From: Sergey Okhapkin @ 1999-03-13 17:33 UTC (permalink / raw)
  To: cygwin, 'David's Lightspeed Email'

David's Lightspeed Email wrote:
> For example, here is a simple command:
> 
> $ find . -name sh.exe -print
> 
> With parameters, it consistently tells me that "FIND: Parameter format not
> correct"
> Without parameters, it reports "required parameter missing"
> 

cd \winnt\sysyem32
ren find.exe find.nt.exe

-- 
Sergey Okhapkin, http://www.lexa.ru/sos
Piscataway, NJ



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

^ permalink raw reply	[flat|nested] 32+ messages in thread
* Re: Problems with "find" and job control.
@ 1999-03-13 16:14 Suhaib M. Siddiqi
  1999-03-31 19:45 ` Suhaib M. Siddiqi
  0 siblings, 1 reply; 32+ messages in thread
From: Suhaib M. Siddiqi @ 1999-03-13 16:14 UTC (permalink / raw)
  To: hcobb; +Cc: dpainter, cygwin

-

>Sorry, but the error message:
>
>    FIND: Parameter format not correct
>
>is a pure M$ism.  (Just type \winnt\system32\find to "find" this message)
>

Agree!!!

As Corinna said, if you are having this problem, I would rather rename MS
find.exe.  Windows NT find.exe is useless anyway.

>Depending on the paths to sort things out gives you different results
>depending on the context you're working from.
>
>Personally, I would NOT want my BAT scripts to behave differently depending
>on where they're running from.
>
>Also you only need to quote the name of the file you're looking for (under
>gnu-find or gfind for short) when the filename includes a wildcard.
>
>Anybody gona write Cygwin in a nutshell for O'Reily?  (It's such a pain to
>flip back and forth between the eNp-Ty and Linux books. ;-)


Are you planing to do it?


>


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

^ permalink raw reply	[flat|nested] 32+ messages in thread
* Re: Problems with "find" and job control.
@ 1999-03-13 16:07 Suhaib M. Siddiqi
  1999-03-31 19:45 ` Suhaib M. Siddiqi
  0 siblings, 1 reply; 32+ messages in thread
From: Suhaib M. Siddiqi @ 1999-03-13 16:07 UTC (permalink / raw)
  To: Corinna Vinschen; +Cc: David's Lightspeed Email, cygwin

Then there is some other problem with the installation as you mentioned.


-----Original Message-----
From: Corinna Vinschen <corinna.vinschen@cityweb.de>
To: Suhaib M. Siddiqi <Ssiddiqi@InspirePharm.Com>
Cc: David's Lightspeed Email <dpainter@lightspeed.net>;
cygwin@sourceware.cygnus.com <cygwin@sourceware.cygnus.com>
Date: Saturday, March 13, 1999 7:03 PM
Subject: Re: Problems with "find" and job control.


>Suhaib M. Siddiqi wrote:
>> >$ find . -name sh.exe -print
>>
>> you are typing a wrong thing.  You need to put quotes around sh.exe.
>>
>> find . -name "sh.exe" -print
>>
>> The command you are typing is going to give you syntex error on a UNIX
>> machine too.
>
>This help is incorrect! You only have to quote the name, if it contains
>meta characters, e.g. `*.c'.
>
>Corinna
>
>--
>Want to unsubscribe from this list?
>Send a message to cygwin-unsubscribe@sourceware.cygnus.com
>
>


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

^ permalink raw reply	[flat|nested] 32+ messages in thread
* Re: Problems with "find" and job control.
@ 1999-03-13 15:58 Suhaib M. Siddiqi
       [not found] ` < 001101be6dad$6cc1c2c0$41cd78cf@hunda >
                   ` (2 more replies)
  0 siblings, 3 replies; 32+ messages in thread
From: Suhaib M. Siddiqi @ 1999-03-13 15:58 UTC (permalink / raw)
  To: hcobb, dpainter; +Cc: cygwin

>I always rename the cygnus find to gfind so that it does not collide with
>the builtin WinDos version of find.exe...
>

I did nt rename it and as long as I ran find within Cygwin Bash shells, with
path properly defined, I have never seen conflicts with WinDos version of
find.exe

David is making a mistake in typing the find command syntex that's why he is
seeing errors.


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


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

^ permalink raw reply	[flat|nested] 32+ messages in thread
* Problems with "find" and job control.
@ 1999-03-13 15:41 David's Lightspeed Email
       [not found] ` < 00cf01be6daa$7c9d3ce0$cf39a5d1@www.lightspeed.net >
                   ` (5 more replies)
  0 siblings, 6 replies; 32+ messages in thread
From: David's Lightspeed Email @ 1999-03-13 15:41 UTC (permalink / raw)
  To: cygwin

                                    March 13th, 1999

My "find" command does not seem to be working properly. Regardless of what
options I give it, it always complains about the parameters being wrong.

For example, here is a simple command:

$ find . -name sh.exe -print

With parameters, it consistently tells me that "FIND: Parameter format not
correct"
Without parameters, it reports "required parameter missing"

The command:
$ find --help
does not work either.

------
Now, as for job control, arent the "jobs", "bg", and "fg" commands a
standard part of SH?
I don't seem to have these in my distribution, and I could really use them.






                                     David L. Painter
                                     dpainter@prontomail.com
                                     dpainter@lightspeed.net
                                     ph: (559) 292-5366 * 3
                                     fax:(559) 292-0410



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

^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~1999-03-31 19:45 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
1999-03-13 15:57 Problems with "find" and job control Suhaib M. Siddiqi
1999-03-13 16:02 ` Corinna Vinschen
1999-03-31 19:45   ` Corinna Vinschen
     [not found] ` < 000c01be6dad$321acea0$41cd78cf@hunda >
1999-03-13 16:18   ` Rick Rankin
1999-03-31 19:45     ` Rick Rankin
1999-03-15  8:00   ` Simao Campos
1999-03-31 19:45     ` Simao Campos
1999-03-31 19:45 ` Suhaib M. Siddiqi
  -- strict thread matches above, loose matches on Subject: below --
1999-03-15  8:02 Suhaib M. Siddiqi
1999-03-31 19:45 ` Suhaib M. Siddiqi
1999-03-13 17:33 Sergey Okhapkin
1999-03-31 19:45 ` Sergey Okhapkin
1999-03-13 16:14 Suhaib M. Siddiqi
1999-03-31 19:45 ` Suhaib M. Siddiqi
1999-03-13 16:07 Suhaib M. Siddiqi
1999-03-31 19:45 ` Suhaib M. Siddiqi
1999-03-13 15:58 Suhaib M. Siddiqi
     [not found] ` < 001101be6dad$6cc1c2c0$41cd78cf@hunda >
1999-03-13 16:11   ` Henry J. Cobb
1999-03-31 19:45 ` Suhaib M. Siddiqi
1999-03-31 19:45 ` Henry J. Cobb
1999-03-13 15:41 David's Lightspeed Email
     [not found] ` < 00cf01be6daa$7c9d3ce0$cf39a5d1@www.lightspeed.net >
1999-03-13 15:47   ` Henry J. Cobb
1999-03-13 15:56 ` Corinna Vinschen
1999-03-13 16:08   ` Weiqi Gao
1999-03-31 19:45     ` Weiqi Gao
1999-03-31 19:45   ` Corinna Vinschen
     [not found] ` <199903132347.AAA11826@mail2.cityweb.de>
1999-03-13 15:58   ` Corinna Vinschen
1999-03-31 19:45     ` Corinna Vinschen
1999-03-13 16:05 ` Corinna Vinschen
1999-03-31 19:45   ` Corinna Vinschen
1999-03-31 19:45 ` Henry J. Cobb
1999-03-31 19:45 ` David's Lightspeed Email

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).