Created
February 22, 2018 13:15
-
-
Save julianobailao/ff6af540b382c6ab07510cadfd82f029 to your computer and use it in GitHub Desktop.
Usando rsync para baixar ou enviar arquivos remotos
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Baixando um arquivo remoto com rsync | |
rsync -Cravpe user@ip:/caminho/real/do/arquivo.extensao downloads/arquivo.extensao | |
# Enviando um arquivo remoto com rsync | |
rsync -Cravpe downloads/arquivo.extensao user@ip:/caminho/real/do/arquivo.extensao | |
# Caso a porta ssh seja diferente de 22, é necessário seta-la, como no exemplo onde 12345 é a porta: | |
rsync -Cravpe 'ssh -p 12345' user@ip:/caminho/real/do/arquivo.extensao downloads/arquivo.extensao |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment