Problem Statement
Which command securely copies files between remote systems over SSH?
Explanation
scp (secure copy) transfers files between hosts securely using the SSH protocol.
It’s simple and encrypted, making it ideal for server-to-server data transfers.
Code Solution
SolutionRead Only
scp file.txt user@server:/tmp/
Practice Sets
This question appears in the following practice sets: