Skip to content

How to download a file from a server using the terminal

New Course Coming Soon:

Get Really Good at Git

I’ve had the need to transfer a file I had on a server.

I was connected through SSH and I didn’t want to setup the SFTP connection (and I didn’t know if the SFTP connection was allowed), so I opened another terminal window and used the command scp.

Here’s the syntax:

scp -i /.ssh/yourkey USER@SERVER:/path-to-file/on/server.txt ./ 

Swap USER and SERVER with your server details, and also /path-to-file/on/server.txt with the path of the file. And use your SSH key path.

This will download the file in the same folder you are in, because I specified ./. You can change it to any folder on your computer.

Are you intimidated by Git? Can’t figure out merge vs rebase? Are you afraid of screwing up something any time you have to do something in Git? Do you rely on ChatGPT or random people’s answer on StackOverflow to fix your problems? Your coworkers are tired of explaining Git to you all the time? Git is something we all need to use, but few of us really master it. I created this course to improve your Git (and GitHub) knowledge at a radical level. A course that helps you feel less frustrated with Git. Launching May 21, 2024. Join the waiting list!

Here is how can I help you: