EN
Linux - copy zip file with scp from remote server
8 points
Quick solution:
xxxxxxxxxx
1
# copy from remote to home directory on current server
2
scp root@2.2.2.2:/home/my_zip_file.zip /home
Copy from remote to current directory:
xxxxxxxxxx
1
# copy from remote to current directory
2
scp root@2.2.2.2:/home/my_zip_file.zip .