Re: Comparing two text files.

2003-08-20 Thread Yupapa.com
#!/usr/bin/perl use Fcntl qw(:DEFAULT :flock); use strict; my $file_one= 'file1.txt'; my $file_two= 'file2.txt'; my %file_one_data = (); my %file_two_data = (); sysopen(FILE, $file_one, O_RDONLY); flock(FILE, LOCK_SH); while() {

Re: Running process in background?

2003-08-20 Thread Yupapa.com
Hi~ 0 * * * * /usr/bin/perl /full/path/to/your/script That will run the script every hour at 0 ByeBye~ Yupapa ### # Yupapa Web Hosting =^.^= # Web Site - http://www.yupapa.com # Email - [EMAIL PROTECTED] ### "Kevin Pfeiffer" <[EMAIL PROTEC

Re: File::Copy & CGI.pm

2003-08-20 Thread Yupapa.com
HiHi~ If you are transfering file from a local machine to a remote machine, you do not use File::Copy module to copy files. File::Copy is used for copying files locally. You can use Net::FTP to transfer files from one machine to another. And of course, you will need a FTP server for the machine