Transfer FILE from UNIX to WIN2000/XP

it's possible make a transfer file with a remote command from UNIX SYSTEM to another computer with WIN2000/XP ???

ex.(rsh,ssh ecc.....????)

now i use FTP program or telnet connection but ,i find a solution for execute a transfre file in to shell script UNIX (sh or ksh) from windows system

No, in general, you will just have to embed ftp commands in a shell script or just use ftp. --- rcp etc. doesn't work directly to Windows.

There are two workarounds:

  1. install cygwin (free UNIX for windows) on the Windows box. You can then
    ssh or telnet into the windows box, and then rcp and rsync will work that way.
    http://www.cygwin.com/

  2. Check out free software called samba. It will let windows directly open and read/write the UNIX disks.
    samba exists for Windows cleint and Unix clients.

http://samba.org/samba/download/

And vice versa. You can mount Windows shares as directories in a UNIX system with smbmount, then just copy the file into the directory.