“Wie man SCP von VM nach lokal ist” Code-Antworten

Wie man SCP von VM nach lokal ist

# Download the file ~/yourFile.xyz to your home directory on your computer
$ scp [email protected]:~/yourFile.xyz ~/.
 
# Download the folder yourFolder to your home directory on your computer
$ scp -r [email protected]:~/yourFolder ~/.
Outrageous Osprey

Wie man SCP von VM nach lokal ist

# Upload the file yourFile.xyz to your home directory on the VM
$ scp yourFile.xyz [email protected]:~/.
 
# Upload the folder yourFolder to your home directory on the VM
$ scp -r yourFolder [email protected]:~/.
Outrageous Osprey

Ähnliche Antworten wie “Wie man SCP von VM nach lokal ist”

Fragen ähnlich wie “Wie man SCP von VM nach lokal ist”

Weitere verwandte Antworten zu “Wie man SCP von VM nach lokal ist” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen