use Net::SFTP; sub progress{ my ($sftp, $data, $offset, $total) = @_; my $num_width = length $total; select STDOUT; $|=1; print "Wrote $offset bytes of $total"; } sftp->put($File, $RemoteFile, \&progress);