Luego de de una extensa búsqueda de información pudimos solucionar esta cuestión que suelen tener muchos lectores. Te dejamos la respuesta y esperamos resultarte de mucha ayuda.
Ejemplo 1: bash Cómo transferir archivos de un servidor remoto a otro servidor remoto
# Basic syntax:scpsource destination
# Note, usually one or both of "source" and "destination" are remote # (otherwise you'd just use cp for a local copy)# To specify a local source or destination, just use the directory path# To specify a remote destination, the format is:# [email protected]:/path/to/directory# Example usage:scp /Users/name/Downloads/*.txt [email protected]:/path/to/directory
# In this example, you'd be uploading all text files from your downloads # to the remote serverscp[email protected]:/path/to/directory/*png /Users/name/Downloads
# In this example, you'd be downloading all png files from the remote# server to your downloads directoryscp[email protected]:/path/to/directory/my_favorite_file.txt [email protected]:/path/to/directory
# In this example, you'd be moving a file from one remote server to # another remote serverscp -r [email protected]:/path/to/directory /Users/name/Downloads
# In this example the -r flag is used to state that this is a recursive# download, meaning that all files and subdirectories in the directory# will be downloaded to the local Downloads directory
Ejemplo 2: servidor scp a local
scp[email protected]:/remote/file.txt /local/directory
Sección de Reseñas y Valoraciones
Si conservas alguna suspicacia y capacidad de ascender nuestro sección puedes realizar una glosa y con deseo lo leeremos.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)