Show
Ignore:
Timestamp:
11/26/08 22:17:13 (3 years ago)
Author:
Ted Faber <faber@…>
Children:
a2da1101a00c814152a9f86c68d56de718a2fdba
Parents:
93a06fb6158c8a7c31b06fed837a9d3da344bb69
git-committer:
Ted Faber <faber@isi.edu> / 2008-11-27T06:17:13Z+0000
Message:

Simplify the filehandle in the open call, so real data is read.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • fedkit/fed-tun.pl

    r01073f7 r0ea5050  
    261261        print "$cmd\n" if $debug; 
    262262 
    263         open($SSHCMD[$count], $cmd)  
     263        open(SSHCMD, $cmd)  
    264264           or die "Failed to run ssh"; 
    265265 
    266         my $check = <$SSHCMD[$count]>;  # Make sure something ran... 
     266        my $check = <SSHCMD>;  # Make sure something ran... 
    267267        print "Got line [$check] from remote side\n" if ($debug); 
    268268