Quote:
Originally Posted by KiranKumarKarre
Can anyone give me complete discription of following statement as am new to Unix.
scp "file 1" "file 2" etc. remote.server  ath
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