Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

scp download file

scp remote_username@remote_addr:/remote/path/file.txt .
Comment

scp download

# download: remote -> local
scp user@remote_host:remote_file local_file 

# upload: local -> remote
scp local_file user@remote_host:remote_file

# upload: with key
scp -i key.pem local_file user@remote_host:remote_file

# upload: specify port
scp -P 2222 local_file user@remote_host:remote_file
Comment

scp file download

scp osxdaily@192.168.0.4:filename.zip ~/Desktop/
Comment

PREVIOUS NEXT
Code Example
Shell :: hoe to install LAMP on ubuntu 
Shell :: duplicate clone remote branch locally git 
Shell :: ubuntu console png to pdf 
Shell :: How do I sync local and remote branches? 
Shell :: how to grep curl verbose 
Shell :: bash terminal function display all arguments 
Shell :: install mongo compass 
Shell :: keep only last line bash 
Shell :: windows terminal open as admin 
Shell :: install chocolatey 
Shell :: vadersentiment pip install 
Shell :: git-hub push code 
Shell :: git diff how to exit 
Shell :: exec into docker container 
Shell :: docker wordpress 
Shell :: zsh powerlevel 
Shell :: how to list brew packages installed 
Shell :: how to install jupyter in excel 
Shell :: powershell create service 
Shell :: uninstall your phone app windows 10 
Shell :: how to stop a program from running linux 
Shell :: This site can’t be reached 
Shell :: how to run mongodb shell 
Shell :: ubuntu change username 
Shell :: how to enable camera in ubuntu 
Shell :: powershell check if file exists 
Shell :: fuser install linux 
Shell :: run screen on background linux terminal 
Shell :: install torch 1.7.1 
Shell :: git discard unstaged files 
ADD CONTENT
Topic
Content
Source link
Name
1+1 =