Skip to main content

scp | Push/Pull Files/Directory

To copy files/folders from one system to another system

scp <source> <dest>

Pull file.txt to home directory

scp username@host:/file.txt ~/

Push file.txt to other system home directory

scp ~/file.txt username@host:~/file.txt