Windows (Guest):
rsync --daemon --verbose --no-detach --config=rsyncd.conf --port=2222
Host:
rsync -avzr scripts/ rsync://windows_hostname:2222:/tmp/scripts
Windows (Guest):
rsync --daemon --verbose --no-detach --config=rsyncd.conf --port=2222
Host:
rsync -avzr scripts/ rsync://windows_hostname:2222:/tmp/scripts
require 'winrm-fs' | |
require 'benchmark' | |
manifest = 'files.txt' | |
files = File.read(manifest).lines | |
files = files.map do | file | | |
next if file =~ /COMMIT_EDITMSG/ | |
File.expand_path(file.strip, Dir.pwd) | |
end.compact |