how to copy file from local to 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: copy file from ssh server to local
scp host_name:file_server path_local
Example 3: 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 4: ssh usage copy file
cp original_file new_file