PSCP-Putty Secure Copy Program
PSCP is secure way of downloading file from an SSH Server instead of using FTP protocol. This is an example of how to copy file flower.jpg from an SSH server ip 202.190.128.115 using port 447
pscp -P 447 username@serverhostname.com:flower.jpg .
note: do not forget the last dot (.) which means that you're saving the file to current local directory.
command for uploading file to SSH server
pscp -P 447 flower.jpg username@serverhostname.com:flower.jpg
pscp -P 447 username@serverhostname.com:flower.jpg .
note: do not forget the last dot (.) which means that you're saving the file to current local directory.
command for uploading file to SSH server
pscp -P 447 flower.jpg username@serverhostname.com:flower.jpg
1 Comments:
if you're in linux computer, use scp program.
scp username@serverip:thefilename localfile
Post a Comment
<< Home