Created
October 28, 2010 03:18
-
-
Save dongyuwei/650555 to your computer and use it in GitHub Desktop.
使用ruby scp库批量上传文件夹,并且显示进度
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/ruby | |
#@auther [email protected] | |
require 'rubygems' | |
require 'net/ssh' | |
require 'net/scp' #gem install net-scp | |
host = "ip address" | |
username = "your name" | |
password = "your password" | |
source = "/home/xxx/xx/" | |
target = "/opt/" | |
recursive = true #recursive uploads directory | |
Net::SCP.start(host, username, :password => password) do |scp| | |
scp.upload!(source, target,:recursive => recursive)do |ch, name, sent, total| | |
#progress reports | |
puts "#{name}: #{sent}/#{total}" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment