Windows (Guest):
rsync --daemon --verbose --no-detach --config=rsyncd.conf --port=2222Host:
rsync -avzr scripts/ rsync://windows_hostname:2222:/tmp/scriptsWindows (Guest):
rsync --daemon --verbose --no-detach --config=rsyncd.conf --port=2222Host:
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 |