The scp command in Linux is used to transfer files between machines over a secure, encrypted connection. It is similar to rcp.
The general syntax to transfer a local file to a remote system is as follows:
-----
scp source_file_name username@destination_host:destination_folder
-----
The...