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