Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1720035
  • 博文数量: 362
  • 博客积分: 10587
  • 博客等级: 上将
  • 技术积分: 4098
  • 用 户 组: 普通用户
  • 注册时间: 2009-09-10 18:15
文章分类

全部博文(362)

文章存档

2014年(1)

2013年(58)

2011年(115)

2010年(112)

2009年(76)

分类: PERL

2013-04-18 17:18:53


  1. #!/usr/bin/perl


  2. use 5.012;
  3. use strict;
  4. use warnings;
  5. use autodie;
  6. use Net::OpenSSH;


  7. my %param = (
  8. user => 'fivetrees',
  9. passphrase => '123456',
  10. key_path => '/home/fivetrees/.ssh/fivetrees',
  11. timeout => 10
  12. );


  13. my $ssh = Net::OpenSSH->new('192.168.1.2', %param);
  14. $ssh->system('echo "hello" >> xxxxx.txt');
  15. $ssh->scp_put('/root/a.txt', '/root/');


阅读(1377) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~