|
Answer» Hi,
I am using copy and move commands in my BATCH file, the question is can i use 'SCP' secure copy in batch file, if yes, then please suggest me how? that would be great.
thank youJust get a WIN32 scp implementation and place the REGULAR commands in the batch file
Copying file to host:
scp SourceFile.ext [emailprotected]:directory/TargetFile.ext
Copying file from host:
scp [emailprotected]:folder/SourceFile.ext TargetFile.ext
|