Skip to content

Instantly share code, notes, and snippets.

@jasperf
Last active May 11, 2019 19:52
Show Gist options
  • Save jasperf/791566d630f00abf916f to your computer and use it in GitHub Desktop.
Save jasperf/791566d630f00abf916f to your computer and use it in GitHub Desktop.
Use secure copy or scp to upload and download files to the server #scp #ssh
//Uploading Using SCP
## origin > destination
scp /home/jasper/path/file [email protected]:/home/username/domain.com/public_html/images/
Uploading to Ubuntu Server
scp /home/jasper/path/file [email protected]:/var/www/html/
##downloading
scp [email protected]:/root/pcfilename.rar ./
##directory download
scp -r [email protected]:/path/to/foo /home/user/Desktop/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment