Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations John Tel on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: himagauri
  • Content: Threads
  • Order by date
  1. himagauri

    Parent process unable to read messages from child process

    Hello, I've a process which is supposed to do the following: 1.A Parent process has to fork to create fixed number of child processes. (This fixed number changes each time my code runs.) 2. Each child computes certain values and writes these values on to a pipe. 3. The parent should read...
  2. himagauri

    unable to calculate file size greater than 1 GB using -s operator

    My perl script is a very big script and performs a lot of complex tasks. One of the tasks within the script is to calulate the size of a file as follows: $size = -s $filename; $size = -1 unless defined($size); When the file size is larger than 1GB for example 16376862124 bytes or 16 GB, the...
  3. himagauri

    Perl+$ftp->message

    Hi, I'm running an automated FTP job using Perl script. After each ftp command I have used $ftp->message command. This helps me log only one message issued by FTP server. for e.g: Here is a code snippet $ftp->get(file1,file2); $s = $ftp->message; mylog($s); FTP SERVER returns the following...
  4. himagauri

    FTP GET for files from mainframes using perl

    I'm trying to do an FTP GET a file from mainframe to Linux. I have a perl daemon on Linux which issues the follwing commands- my $ftp=Net::FTP->new($MVSADDR,Timeout=>1800,Debug=>1); my $olddir = getcwd(); chdir(makedir()) or $ftp=0; $ftp->login($MVSUSER,$MVSPASS); $ftp->binary...
  5. himagauri

    FTP GET for files from mainframes

    I'm trying to do an FTP GET a file from mainframe to Linux. I have a perl daemon on Linux which issues the follwing commands- my $ftp=Net::FTP->new($MVSADDR,Timeout=>1800,Debug=>1); my $olddir = getcwd(); chdir(makedir()) or $ftp=0; $ftp->login($MVSUSER,$MVSPASS); $ftp->binary...

Part and Inventory Search

Back
Top