scp command line code example
Example 1: scp send file
scp ./file.txt remote_username@remote_ip:/remote/directory
Example 2: bash How To Transfer Files From a Remote Server to another Remote Server
scp source destination
scp /Users/name/Downloads/*.txt [email protected]:/path/to/directory
scp [email protected]:/path/to/directory/*png /Users/name/Downloads
scp [email protected]:/path/to/directory/my_favorite_file.txt [email protected]:/path/to/directory
scp -r [email protected]:/path/to/directory /Users/name/Downloads
Example 3: linux scp
scp -r -p chemin/vers/dossier/source user@serveur2:chemin/vers/dossier/destination
Example 4: scp command
scp [OPTION] [user@]SRC_HOST:]file1 [user@]DEST_HOST:]file2
Example 5: scp command in unix
scp [options] username1@source_host:directory1/filename1 username2@destination_host:directory2/filename2