copy ssh code example
Example 1: copy my ssh key
clip < ~/.ssh/id_rsa.pub
Example 2: copy ssh key to remote server
ssh-copy-id -i ~/.ssh/mykey.pub user@host
Example 3: copy ssh keys
pbcopy < ~/.ssh/id_rsa.pub
Example 4: how to copy ssh key
ssh-copy-id -i ~/.ssh/mykey user@host
Example 5: centos copy files ssh
scp <source> <destination>
#To copy a file from B to A while logged into B:
scp /path/to/file username@a:/path/to/destination
#To copy a file from B to A while logged into A:
scp username@b:/path/to/file /path/to/destination