copy a file ssh code example
Example 1: 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 2: 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 3: how to transfer data using ssh
scp /path/to/file username@a:/path/to/destination
scp username@b:/path/to/file /path/to/destination
Example 4: ssh usage copy file
cp original_file new_file