The UNIX and Linux Forums  


Go Back   The UNIX and Linux Forums > Top Forums > UNIX for Dummies Questions & Answers
.
google unix.com




View Single Post in the UNIX and Linux Forums - Click on the Thread or Permalink to View Entire Thread -->
  #6 (permalink)  
Old 05-04-2009
devtakh devtakh is offline
Registered User
  
 

Join Date: Oct 2007
Location: Bangalore
Posts: 514
Quote:
Originally Posted by KiranKumarKarre View Post
Can anyone give me complete discription of following statement as am new to Unix.

scp "file 1" "file 2" etc. remote.serverath

I want to transfer file e.g test.sh to C drive in 102.19.23.122 ,

I am tryig like
scp test.sh 102.19.23.122:C

but its not working ,
For this copy, it will be easier for you to just do a ftp from the DOS command prompt


Code:
open DOS 
cd c:
ftp unixbox
user
paswword
cd /dir  [ directory where your tesh.sh is present]
get test.sh
bye

cheers,
Devaraj Takhellambam