Answers for "how to scp from vm to local"

1

how to scp from vm to local

# 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 ~/.
Posted by: Guest on September-15-2020
0

how to scp from vm to local

# 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]:~/.
Posted by: Guest on September-15-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language