Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to scp from vm to local

# Download the file ~/yourFile.xyz to your home directory on your computer
$ scp username@cerzheprd03.its.auckland.ac.nz:~/yourFile.xyz ~/.
 
# Download the folder yourFolder to your home directory on your computer
$ scp -r username@cerzheprd03.its.auckland.ac.nz:~/yourFolder ~/.
Comment

how to scp from vm to local

# Upload the file yourFile.xyz to your home directory on the VM
$ scp yourFile.xyz username@cerzheprd03.its.auckland.ac.nz:~/.
 
# Upload the folder yourFolder to your home directory on the VM
$ scp -r yourFolder username@cerzheprd03.its.auckland.ac.nz:~/.
Comment

PREVIOUS NEXT
Code Example
Shell :: install jenkins 
Shell :: vue import yaml 
Shell :: brew Cannot install on Intel processor in ARM default prefix (/opt/homebrew)! 
Shell :: how to activate conda/Anaconda environment 
Shell :: tar uncompress tgz 
Shell :: how to do create diff file in git 
Shell :: have all changes from a local branch to a new local branch git 
Shell :: how to erase router configuration in cisco packet tracer 
Shell :: vault installation 
Shell :: copying folders in git bash 
Shell :: react native cannot load 
Shell :: move repository from bitbucket to github 
Shell :: execute cron.daily 
Shell :: what is sudo in linux 
Shell :: docker stop swarm 
Shell :: install k3s on ubuntu 
Shell :: ros installation 
Shell :: start elasticsearch on aws 
Shell :: setup ssh key 
Shell :: sed insert multiple lines after match 
Shell :: mv linux command 
Shell :: npm install, npm install for web developer 
Shell :: pull all branches from remote git 
Shell :: dir to file txt 
Shell :: how to create a new group in linux 
Shell :: command to make shell variable as an environment variable 
Shell :: pylint 
Shell :: bash compare two strings 
Shell :: composer download 
Shell :: sync just one file between branches 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =