SSH (Secure Shell) is a network protocol that establishes an encrypted connection between two computers. It is mainly used for securely logging into remote systems (e.g., servers) and executing commands.
ssh username@server-ip
scp file.txt username@server-ip:/destination-folder/
ssh-copy-id username@server-ip
SSH is commonly used by developers and system administrators to manage servers or establish secure connections for other applications.