- 论坛徽章:
- 1
|
谢谢,使用 $|=1后,前台每次输出可以及时被后台FTP获得了,参见代码如下:
##############fifow.pl
sub Writing {
open CMDFILE,"< $home/cmds.list" or die "can not open cmd.list $!";
select(FIFO);
$| = 1;
print FIFO "cd $remoteDir \n";
print FIFO "lcd $home/$Source\n"; #~/source used to store downloaded files
while ( chomp($Line =<CMDFILE>)){
print FIFO $Line."\n";
$result=0;
if ($Line=~/mkdir/){
$result=1;
} else {
while (chomp($rel=<FIFO1>)){
if ($rel=~/File send OK/){
$result=1;
last;
}
if ($rel=~/Failed|Timeout/i){
$result=0;
last;
}
if ($rel=~/created/){ #mkdir OK
$result=1;
last;
}
if ($rel=~/Create directory operation failed|File exists/){ #mkdir KO
$result=0;
last;
}
}
}
print STDOUT "cmd=$Line\n";
print STDOUT "result=$result\n";
}
print FIFO "quit\n";
chdir $home;
system("tar cvf $Source.tar $Source/.");
}
#Main process
#PrepareCmdFile;
$cmd="fifor.pl &";
system($cmd)==0 || die "can not system $cmd,$!";
$fifofile="$home/.fifo_m2c";
open FIFO,">$fifofile" or die "cannot open file $fifofile";
$fifofile="$home/.fifo_c2m";
open FIFO1,"<$fifofile" or die "cannot open file $fifofile";
Writing;
close FIFO;
#############fifor.pl
#!/usr/bin/perl
$fifofile="$home/.fifo_m2c";
open FIFO,"<$fifofile" or die "cannot open file $fifofile";
$fifofile="$home/.fifo_c2m";
open FIFO1,">$fifofile" or die "cannot open file $fifofile";
select(FIFO1);
$| = 1;
sub Reading {
close STDIN;
open STDIN,"<&FIFO";
close STDERR;
open STDERR,">&=STDOUT";
close STDOUT;
open STDOUT,">&FIFO1";
$cmd = "ftp hostname ";
exec($cmd)==0 or die "can not running $cmd,$!";
}
#Main process
Reading;
close FIFO;
执行命令的行:
$./fifow.pl remoteDir |
|