Automate file transfer from Windows to Unix

listed in answer

Automate file transfer from Windows to Unix
0 votes, 0.00 avg. rating (0% score)

ANSWER:

You could use the SCP program that comes with famed terminal emulator PuTTY: pscp.exe

If you create public/private key files, pscp.exe should have the ability to just do something like:

pscp *.csv *.txt username@unixhost:whatever/subdirectory/

from inside a .bat file.

by Bruce Ediger from http://unix.stackexchange.com/questions/37823