copy file from local to ssh code example
Example 1: copy from local to ssh ubuntu
scp -r your_user_name@ip_address_of_PCA:/path/to/remote/directory /path/to/local/directory
Example 2: centos copy files ssh
scp <source> <destination>
scp /path/to/file username@a:/path/to/destination
scp username@b:/path/to/file /path/to/destination
Example 3: ssh transfer file from local to remote
scp file.txt [email protected]:/remote/directory
Example 4: how to copy file using ssh
$ sudo apt install openssh-server
$ sudo systemctl enable ssh
$ sudo systemctl start ssh
$ scp myfile.txt remote_user@remote_ip_address
Example 5: copy file from ssh server to local
scp host_name:file_server path_local
Example 6: copy files from local to host ssh
$ scp * remoteuser@remoteserver:/remote/folder/