UNIX command to copy files from Windows to UNIX box


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting UNIX command to copy files from Windows to UNIX box
# 1  
Old 11-10-2013
Wrench UNIX command to copy files from Windows to UNIX box

Hi Folks,

I have a file name abc.xml in my windows machine at the location c:\ytr\abc.xml
which I want to place at the unix box machine inside cde directory.. at the following location that is /opt/app/cde/
now the credentials of unix box are

abc345 -->(dummyid)
ftyiu88--->(dummy passwd)

please advise the unix command to achieve this which I can write when I login to putty, I have tried but it is not working..Smilie
# 2  
Old 11-10-2013
you want to send the file to this directly using ftp, rcp or scp ?
# 3  
Old 11-10-2013
Quote:
Originally Posted by Bashar
you want to send the file to this directly using ftp, rcp or scp ?
Well with SCP is best , I will log in to putty and then want to execute command..!!
# 4  
Old 11-10-2013
Code:
c:\> pscp "c:\ytr\abc.xml" user@linux_host:"/opt/app/cde"

# 5  
Old 11-10-2013
and if you want to scp many files without entering the password everytime setup ssh keys for auto login and copy the file
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Copy files from windows outlook in to UNIX box.

HI All, I am using a windows RDP machine . from the RDP i am opening a putty session of a unix server.i have outlook installed in the windows RDP machine, and if i get a file inthe outlook mail how can i copy it to a location in the putty unix machine. Please help me!!!! (3 Replies)
Discussion started by: mahesh300182
3 Replies

2. UNIX for Dummies Questions & Answers

Get files from Windows to Unix Box

Hi All, I am a new to unix scripting ...looking for directions from the Gurus. I want to create a FTP script to get Files from windows box to unix box. Thank you for your replies. (1 Reply)
Discussion started by: pbhk
1 Replies

3. Shell Programming and Scripting

Transfering files from windows to unix box through sftp

Hello All, we have scenarion where we need to pull the Files from Windows to Unix Box through SFTP protocol. as per our analysis we did install the cygwin package on the Windows Box to have the openSSH package functionality. 1.Will openSSH help us to achieve the functionality what we are... (3 Replies)
Discussion started by: Amey Joshi
3 Replies

4. UNIX for Advanced & Expert Users

Copy file from unix box to another unix box

Hi, I am new for perl scripting, I need a script to copy a log file /test/test_yyyymmdd.dat from one unix box to another unix box location /check/check1/ at daily 2:00AM, please let me know how to do that...... Regards, Ann (8 Replies)
Discussion started by: fabrine
8 Replies

5. UNIX for Dummies Questions & Answers

Copy file from Remote Unix box to windows machine

Hi I need to copy a file from the remote unix server to windows machine. I read lot of thrad but didn't worked out. Requesting all to please help. (2 Replies)
Discussion started by: sameerspice
2 Replies

6. Shell Programming and Scripting

FTP some text files from Windows box to unix

hi all, can anybody help me with script or command to ftp some text file from windows machine to AIX machine. this is shud be done by executing a shell script. (1 Reply)
Discussion started by: suprithhr
1 Replies

7. UNIX for Dummies Questions & Answers

I need an scp command from a unix box to a windows box.

scp file="myfile.txt" todir="user@somehost:(M:drive:/somepath/)"/ Not sure I need it to go to a specific drive on the windows box (1 Reply)
Discussion started by: xgringo
1 Replies

8. Shell Programming and Scripting

Moving files from Unix box to a windows box

Hi All, I need a little help .I want to transfer a file from unix box to a windows box,but the problem i'm facing is that in windows box FTP is not enabled and currently it is nearly impssible to change setting on windows box,i can not use the ftp method ,in my shell script to transfer the file.... (2 Replies)
Discussion started by: Preet
2 Replies

9. UNIX for Dummies Questions & Answers

Running UNIX commands remotely in Windows box from Unix box – avoid entering password

I am able to run the UNIX commands in a Windows box from a UNIX box through "SSH" functionality. But whenever the SSH connection is established between UNIX and Windows, password for windows box is being asked. Is there a way to avoid asking password whenever the SSH connection is made? Can I... (1 Reply)
Discussion started by: D.kalpana
1 Replies

10. Shell Programming and Scripting

executing *.bat file on windows from Unix box via ftp command

I have created get_list.bat file containing following line: dir /B /O-d >file_list.txt I am executing ftp command from Unix box and transferring get_list.bat file to windows server. In my next ftp command I am trying to execute this test.bat file by entering this line: get_list or by... (9 Replies)
Discussion started by: alx
9 Replies
Login or Register to Ask a Question