File Transfer from Window server to UNIX and UNIX to UNIX

Dear All,

Can someone help to command or program to transfer the file from windows to Unix server and from one unix server to another Unix server in secure way.

I would request no samba client.

What about sftp program?

I think that would work but not yet tested

but if you have something please share

For Unix to Unix, there is also rsync which I highly recommend. :b:

i think from unix to unix server file transfer can take place if you try following command:
scp loginid@server_address:/test/folder1/file.txt .
loginid=your login id to remote server
server_address=e.g 172.16.9.122

and after that give full path ....to where u want to copy

---------- Post updated at 06:01 AM ---------- Previous update was at 05:55 AM ----------

i don't have any program in unix for file transfer to windows but i can help with some thing else...hopefully it will help.

just create a batch file in windows...like following

test.bat

echo. starting ftp..

ftp -s:test.txt 172.16.9.122 >ftplog.log
pause.
-----------------------------

after that create test.txt like following

rohit
rohit
cd /itmshome2/etvib/INCOMETAX/
prompt
mget *.csv
bye
------------------

i hope this will work for u...