# $data contains data from a local file to put in the # remote file named by $to ($output, $error, $status) = $ssh->cmd("cat > $to", $data); # On return, $output contains data from the remote file # identified by $from (check status, etc. of course!) ($output, $error, $status) = $ssh->cmd("cat $from");