You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
303 B
Perl

use Net::Telnet;
$telnet = Net::Telnet->new
(
Timeout => 90,
Prompt => '%',
Host => 'server.com'
);
$telnet->login('username', 'password');
$telnet->cmd("cd folder1");
@listing = $telnet->cmd("ls");
print "Here are the files:\n";
print "@listing";
$telnet->close;