注意:我的问题与
非常相似
File location if target path not specified with scp command
但是这个问题是在问这个目标是什么
scp -r /localdir/ root@ubuntu
我的问题是询问目标是什么
scp -r /localdir/ root@ubuntu:
如果有人好奇的话,我在以下网页上发现了这种语法:
https://kubernetes.io/docs/setup/independent/high-availability/#copy-required-files-to-the-correct-locations
这是一个Bash脚本:
USER=ubuntu # customizable
CONTROL_PLANE_IPS="10.0.0.7 10.0.0.8"
for host in ${CONTROL_PLANE_IPS}; do
scp /etc/kubernetes/pki/ca.crt "${USER}"@$host:
scp /etc/kubernetes/pki/ca.key "${USER}"@$host:
scp /etc/kubernetes/pki/sa.key "${USER}"@$host:
scp /etc/kubernetes/pki/sa.pub "${USER}"@$host:
scp /etc/kubernetes/pki/front-proxy-ca.crt "${USER}"@$host:
scp /etc/kubernetes/pki/front-proxy-ca.key "${USER}"@$host:
done
答案 0 :(得分:3)
在测试中,我按如下所示运行命令,将test
文件夹从主机heron01
复制到主机heron02
:
yitian@heron01:~$ scp -r test/ yitian@heron02:
结果表明,可以在以下位置找到test
文件夹:
yitian@heron02:~$ pwd
/home/yitian
因此,您的问题结果是:目标目录是您在scp命令中使用的目标用户的home directory
。在我的示例中,目标目录为:/home/yitian
在主机heron02
中。