RE: Problems with find

2003-01-31 Thread Ian R. Chesal
Your syntax is incorrect. Try: find . -name "1000*" I just tried in in /tmp on my cygwin installation and here's the output: $ find . -name 1000* -o -name 1000.* ./1000 ./1000/1000.zip ./1000.tar.gz You can limit the find to just files or directories with

RE: PROPOSAL: translate '::' to '.' in arguments to the man command

2003-01-24 Thread Ian R. Chesal
Try perldoc instead of man for help with Perl modules. It reads the POD embedded in the modules and does the :: to / or \ translation for you. For example: perldoc File::Basename Would give you the POD embedded in /lib/perl5/5.6.1/File/Basename.pm. It's also a good way to: a) make sure y

RE: Where is rresvport defined in the Cygwini distribution?

2003-01-19 Thread Ian R. Chesal
To answer my own question, adding: #ifdef CYGWIN extern int rresvport(int *port); #endif To the top of the file after the #includes seems to have solved the problem. Cheers! Ian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Ian R. Chesal Sent

Where is rresvport defined in the Cygwini distribution?

2003-01-19 Thread Ian R. Chesal
me in the right direction? Thanks! Ian --- Ian R. Chesal <[EMAIL PROTECTED]> -- 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/

RE: Porting GridEngine, almost there, just need some help linking...

2003-01-19 Thread Ian R. Chesal
Elfyn, Thank you! I was missing the cygipc libraries. Strange though that Cygwin does ship with the IPC headers in /usr/include/cygwin/. Cheers! Ian -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] On Behalf Of Elfyn McBratney Sent: January 19, 2003 9:18 PM To: cygwi

Porting GridEngine, almost there, just need some help linking...

2003-01-19 Thread Ian R. Chesal
#x27;t it. Anyone have any suggestions? I thought shmget and such were in libc.a, but -lc didn't help the situation. Any help is greatly appreciated -- I'm so close to having binaries. Just need a little direction, I'm pretty green when it comes to cygwin porting. Thanks! I