sh SSH Copy o scp。来自:http://www.hypexr.org/linux_scp_help.php
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh SSH Copy o scp。来自:http://www.hypexr.org/linux_scp_help.php相关的知识,希望对你有一定的参考价值。
# Copiar el fichero foo.txt de remoto a local
scp username@remotehost.com:foo.txt /algun/directorio/local
# Copiar el fichero foo.txt de local a remoto
scp foo.txt username@remotehost.com:/algun/directorio/remoto
# Copiar el directorio foo a otra carpeta de local a remoto
scp -r foo username@remotehost.com:/algun/directorio/remoto/bar
# Copiar el fichero foo.txt del remoto1 al remoto2
scp username@remotehost1.com:/algun/directorio/remoto/foo.txt \
username@remotehost2.com:/algun/directorio/remoto/
# Copiar el fichero foo.txt de local a remoto usando el puerto 1234
scp -P 1234 foo.txt username@remotehost.com:/algun/directorio/remoto
# Copiar múltiples ficheros de remoto al directorio local actual
scp foo.txt username@remotehost.com:/algun/directorio/remoto/\{foo.txt,bar.txt} .
以上是关于sh SSH Copy o scp。来自:http://www.hypexr.org/linux_scp_help.php的主要内容,如果未能解决你的问题,请参考以下文章