Secure Copy Protocol (SCP)

linuxfundamentalspart3 linuxstrengthtraining

Secure copy protocol (SCP) is an implementation of FTP based on SSH.

🐊️ Port: 22 (TCP)

# upload
$ scp file_to_upload user@IP:remote/path/
# download
$ scp user@IP:remote/path/ local_path_to_dest

➑️ Use scp -r to download/upload a folder with all its content.