[Perl-unix-users] Re: Accepting file

2001-01-25 Thread Carl Jolley
On Wed, 17 Jan 2001, byron wise wrote: > I'm needing to accept a file in a cgi script. Another party is going to log > into our server and send a text file to my script. I'm lacking experience > and I want to understand how they can run my script by passing it a file. > > I do understand how t

[Perl-unix-users] Help with using shared libraries

2001-01-25 Thread Jeffry A. Nokes
Greetings, I've been using Perl for about 7 years, but mostly in the Windows world. I'm getting back into Unix and Linux heavily, and am hoping to find an answer to my question. I have some Perl srcripts on Win32 platforms that use the Win32:API module to call functions from Windows DLLs. What

RE: [Perl-unix-users] How to find file permissions?

2001-01-25 Thread Barber, Brandon
If you stat the original file you can get it's permissions. You can then apply the same permissions to the copied version. It was the only way I found. -Original Message- From: Nikola Knezevic [mailto:[EMAIL PROTECTED]] Sent: 14 January 2001 20:28 To: [EMAIL PROTECTED] Subject: Re: [Perl-

[Perl-unix-users] File Copy and Move on Unix (Solaris)

2001-01-25 Thread Frank Novak
Greetings, I have a script which I need to port from NT to Unix (Solaris). I used the Win32API::File module functions MoveFileEx and CopyFile to Move and Copy files (Move does a copy src->dest, delete src). I am wondering what are the prefered means of doing this on Unix. Thanks for any tips. F