Net::FTP $ftp->message question
am 21.07.2005 21:32:35 von pemAfter successfully ftp'ing a file ( $ftp->get(file) ), $ftp->message
will produce the following output:
Opening BINARY mode data connection for /det/tmp/out2 (650000 bytes).
Transfer complete.
When doing the same from command line you get two extra lines:
150 Opening BINARY mode data connection for out2 (650000 bytes).
226 Transfer complete.
local: /tmp/out2 remote: out2
650000 bytes received in 0.009 seconds (70891.85 Kbytes/s)
Is there a way to get the same output when using libnet? Thanks