If I'm logged in to a system via SSH, is there a way to copy a file back to my local system without firing up another terminal or screen session and doing scp or something similar or without doing SSH from the remote system back to the local system?
10 Answers
Master connection
It's easiest if you plan in advance.
Open a master connection the first time. For subsequent connections, route slave connections through the existing master connection. In your ~/.ssh/config
, set up connection sharing to happen automatically:
ControlMaster auto
ControlPath ~/.ssh/control:%h:%p:%r
If you start an ssh session to the same (user, port, machine) as an existing connection, the second session will be tunneled over the first. Establishing the second connection requires no new authentication and is very fast.
So while you have your active connection, you can quickly:
- copy a file with
scp
orrsync
; - mount a remote filesystem with sshfs.
Forwarding
On an existing connection, you can establish a reverse ssh tunnel. On the ssh command line, create a remote forwarding by passing -R 22042:localhost:22
where 22042 is a randomly chosen number that's different from any other port number on the remote machine. Then ssh -p 22042 localhost
on the remote machine connects you back to the source machine; you can use scp -P 22042 foo localhost:
to copy files.
You can automate this further with RemoteForward 22042 localhost:22
. The problem with this is that if you connect to the same computer with multiple instances of ssh, or if someone else is using the port, you don't get the forwarding.
If you haven't enabled a remote forwarding from the start, you can do it on an existing ssh session. Type Enter ~C
Enter -R 22042:localhost:22
Enter.
See “Escape characters” in the manual for more information.
There is also some interesting information in this Server Fault thread.
Copy-paste
If the file is small, you can type it out and copy-paste from the terminal output. If the file contains non-printable characters, use an encoding such as base64.
remote.example.net$ base64 <myfile (copy the output)
local.example.net$ base64 -d >myfile (paste the clipboard contents) Ctrl+D
More conveniently, if you have X forwarding active, copy the file on the remote machine and paste it locally. You can pipe data in and out of xclip
or xsel
. If you want to preserve the file name and metadata, copy-paste an archive.
remote.example.net$ tar -czf - myfile | xsel
local.example.net$ xsel | tar -xzf -

- 12,950

- 829,060
-
1If we can transfer files using SSH, why do people still need/use SFTP? – Pacerier Oct 31 '14 at 15:55
-
5@Pacerier Because SFTP is a way to transfer files using SSH. – Gilles 'SO- stop being evil' Oct 31 '14 at 16:05
-
1Why do people even need SFTP if they can transfer files using SSH-without-SFTP? – Pacerier Oct 31 '14 at 22:23
-
The copy-paste method is particularly convenient with chained connections (i.e. jumping through several hosts to reach the final one) – golimar Oct 07 '15 at 14:13
-
-
3@Pacerier SFTP has some extra commands like list files or remove a remote file etc. – rahmu Feb 24 '18 at 21:22
-
If I planned in advance, I wouldn't have the problem in the first place. No one is clairvoyant, and every now and then you run into a situation you haven't planned for. – Szczepan Hołyszewski Aug 09 '21 at 09:28
-
Master connection: this si so cool!!! Especially when you are accessing host over multiple jumphosts (-J flag) with manual 2FA auth in place. Let's script what couldn't be scripted before :). – Petr Javorik Nov 12 '21 at 07:59
Another (IMO) easy way would be:
# to remote host
cat localfile.conf | ssh user@hostname 'cat -> /tmp/remotefile.conf'
# from remote host
ssh user@hostname 'cat /tmp/remotefile.conf' > /tmp/localfile.conf
Or if you prefer something GUI-like, try Midnight Commander. They call the feature Shell-Link. Most distros have em in their package systems as mc
.

- 1,379
-
10Honestly, I don't understand why this isn't upvoted. OP asked for a solution without scp. Sometimes, particularly as in my case where I'm ssh'ing into a very crippled ISP-provided router, I don't have sftp, I don't have scp, and even ftp is badly broken. I knew I could do this, I just came here to make sure my syntax was right. – Auspex Jan 13 '16 at 21:13
-
2
-
Yeah! Might be very lo-tech, but it also works right away. And sometimes that's all you need, rather than advice about installing package xyz that does it better. – JL Peyret May 28 '16 at 03:31
-
-
Yup... This is what the OP asked for, and what I was looking for when I was looking for the answer to this question. – llekn Apr 05 '17 at 02:11
-
2Actually, this solution does not work in my case. With a tunnel created from Windows to Linux, you start in putty, not a terminal. This method is exactly what I wanted, but I can't use it. Annoyed. – Benjamin May 15 '17 at 16:37
-
-
1
-
3The reason I'm not upvoting this is because it won't work if the client machine is behind a shared router (like a corporate network). Supposed I'm on a work computer and I've ssh'd into my home server. How do I copy a file to my work computer having gone through the pains of cd'ing through complex directories with spaces and special characters? – Sridhar Sarnobat Apr 02 '18 at 00:43
-
@user7000 if the client (behind the firewall) can connect to the server via ssh it will work. I posted 2 examples, one in each direction...
But if it's your home server you probably won't be running a constrained ssh setup without sftp support. So just use your favorite sftp client. Or even use something like nextcloud to take care of synchronization. That should also save you from your cd'ing pain. – Florian F Sep 24 '18 at 23:27 -
This command is cool! But what if I want to send a binary file (i.e. non-text file)? – Student Jun 06 '19 at 17:38
-
2It works fine with binary data. I'm doing this with
tgz
files all the time :) – Florian F Jun 06 '19 at 19:19 -
SSH does support a few commands, via the escape character (~
by default):
$ ~?
Supported escape sequences:
~. - terminate connection (and any multiplexed sessions)
~B - send a BREAK to the remote system
~C - open a command line
~R - Request rekey (SSH protocol 2 only)
~^Z - suspend ssh
~# - list forwarded connections
~& - background ssh (when waiting for connections to terminate)
~? - this message
~~ - send the escape character by typing it twice
(Note that escapes are only recognized immediately after newline.)
$ ~C
ssh> help
Commands:
-L[bind_address:]port:host:hostport Request local forward
-R[bind_address:]port:host:hostport Request remote forward
-D[bind_address:]port Request dynamic forward
-KR[bind_address:]port Cancel remote forward
!args Execute local command
The !args
seems to be closest to what you want. Note that you'll need to have PermitLocalCommand
enabled in your /etc/ssh_config
file in order for the ~C
commands to work (see man ssh_config
).
You can re-use the same ssh session if you set up a ControlMaster
in ssh_config
. If you do this:
$ ~C
ssh> !scp file user@myserver:
you've technically never left the ssh session, and don't need to re-authenticate. Probably more complicated than you'd like, but I can't think of another easy way.

- 30,838

- 801
-
-
@xuhdev it's still there on OpenSSH_7.2p2,
args
is not in the first help message (~?
), but in the second (once one enters thessh>
prompt with~C
, one can typehelp
at thessh>
prompt) – sdaau Sep 20 '17 at 08:59 -
1This looks like a good solution (though I haven't tried it), I didn't realize you can get a parent command line buffer, vim-style. In practice, one might simply prefer to open a new terminal tab so that they don't forget how to get back into the session (like when I can never remember how to quit emacs). – Sridhar Sarnobat Apr 02 '18 at 00:49
-
With multiplexed connections like that, the ~C escape solution seems to not work.
$ ~C escape not available to multiplexed sessions
– dodexahedron Nov 22 '22 at 05:47
Those are all very complicated methods.
You can mount the remote file system on your local machine with sshfs
:
mkdir -p /mnt/sshfs
root@IS1300:~# sshfs 192.168.1.2:/ /mnt/sshfs
root@IS1300:~# umount /mnt/sshfs
Then you can copy paste the file with nautilus, gnome, konqueror, dolphin, bash or whatever.

- 1,174

- 601
-
7Connecting with a key-file:
sshfs -oIdentityFile=~/.ssh/keyfile.pem user@192.168.1.2:/ /mnt/sshfs/
– sshow Sep 20 '15 at 12:23 -
don't want to spoil this answere, but most ppl. probably come here for script automation – clockw0rk Aug 10 '22 at 11:37
- Use ssh-xfer, a modified ssh-agent which effectively overloads an existing ssh side-channel for file-transfer use.
- Use zssh, which is effectively zmodem over ssh. If you've ever used rzsz this will seem very familiar.
- Reverse (
-R
, for remote-to-local) or forward (-L
, for local-to-remote) ports to run file transfers over, assuming you have some file-transferring daemon listening on the other end.
But none of these are really needed, IMO. The SSH protocol supports multiple channels on a single connection, and the OpenSSH client supports multiplexing. Assuming you have ControlMaster
and ControlPath
set up (ControlPersist
is useful too),
# first connection $ ssh remote # will multiplex over the same connection the original ssh opened $ sftp remote

- 15,880
-
5zmodem reminds me of the downloading the latest shareware from the local BBS.. :-) – Stuart Woodward Jun 08 '13 at 14:17
-
The xfer way is exactly what I was looking for, but do you know why the ssh-xfer patch is not included in the OpenSSH upstream? Some flame? – Ferran Basora Nov 13 '15 at 11:09
-
Thanks for zssh hint! I'm using tmux in Konsole and because of tmux my "sz" from server is not working anymore. The zssh solves my problems! – 0xAF May 05 '19 at 20:13
What I've found to be the best and most efficient solution is to use xclip-copyfile
and xclip-pastefile
.
On the server, you use xclip-copyfile
to copy one or more files. These files are then available on your local server. There, you can use xclip-pastefile
.
This bypasses the need to use scp
or have a local ssh server. I use this with cygwin for instance. The only problem is that this requires installing xclip
if you don't already have it. Oh, and this works with binary files too.
-
1Wow this might be a better solution than my reverse port forwarding plus netcat. – Sridhar Sarnobat May 29 '19 at 05:48
-
1
An even simpler approach: Open Filezilla (or your favorite ftp browser), open an ssh connection to the same site, find the file and drag it across to your local file structure. If you're new to Filezilla, use the "site manager" feature to reconnect fast next time.
Yes, I know this is obvious to most of you (and not precisely on point), but some (like me) who found this thread searching for a terminal-only solution may have overlooked the obvious.

- 117
-
-
I believe FileZilla server is Windows only. Client is cross-platform though – Freedom_Ben Jul 24 '13 at 18:28
-
-
This worked perfectly with almost no effort on Azure. On AWS, it seems that FTP is not listening on a default instance. You could go to the effort of setting it up. https://cloudinfrastructureservices.co.uk/how-to-setup-ftp-server-on-amazon-aws-windows-ec2-instance/#:~:text=AWS%20FTP%20Server%20Firewall%20Ports,(Used%20for%20data%20transfer). But then it is not the easiest method. – BWhite Aug 03 '22 at 20:04
One of the many reasons we use SecureCRT — despite preferring open source software where practical — is the ease of doing file transfers. There simply is no direct replacement in the F/OSS world.
SecureCRT started out as a pure Windows program in the mid-1990s but was ported to Mac OS X and Linux a couple of years ago.
SecureCRT has three major features for transferring files to and from a system you are SSH'd into:
ZModem, YModem, XModem, Kermit and ASCII - SecureCRT is an old-school sort of terminal emulator, supporting several in-band file transfer protocols.
The easiest to use is ZModem. When you type something like
sz file-to-download
on the remote command line, the remotesz
program writes out an escape sequence that tells SecureCRT to immediately start downloadingfile-to-download
to the default download directory.A nice touch is that the download directory is customizable per session. We use this to have per-site directories on our main office file server, so we don't have to manually sort downloaded files.
(
sz
is the "send ZModem" program, part of thelrzsz
package. It is packaged for most Unixy systems already. If for some reason your remote system doesn't have it installed already, and you can't easily install a binary package, the source package is small and highly portable. More than once, I've had to send anlrzsz
"sharchive" oruuencode
'd tarball to a stripped-down remote system so I could ZModem files to it.)SFTP - SecureCRT has a tightly integrated basic SFTP implementation.
By "tightly integrated," I mean that when you give the SFTP menu command or keyboard shortcut, it opens a new tab connected to the remote site over the same SSH connection. Thus, you don't need to log back in, and the connection is established a bit faster than if you had opened a separate SFTP connection to the same server.
I characterize the SFTP feature as "basic," because VanDyke Software has a separate file transfer product, SecureFX. It is more featureful than the built-in SFTP client, and also integrates with SecureCRT.
SecureCRT's SFTP feature lets you configure default remote and local directories which are separate from the ZModem configuration.
This SFTP feature has a basic command line sort of interface, mimicking OpenSSH's
sftp
program, except that it has affordances like Tab command completion. Thus, retrieving a remote file calledsomefile.tar.gz
might be as easy asget so
TabEnter.Drag-and-drop - If you drag-and-drop a file onto the terminal window, it automatically types
rz
for you and starts sending the file.Alternately, you can open an SFTP tab and drop a file onto that tab to send it via SFTP. Thus, sending a file to a remote system could be as simple as Alt-P, drag, drop.
We find that transfers happen a lot faster via SFTP, probably because it's a TCP-based protocol, so it benefits from the large sliding windows of modern TCP/IP stacks. ZModem was designed in the days when a 64 kiB block size was considered "large." Thus, a lot of the potential speed in a link is soaked up in ZModem while each end waits for block transfer acknowledgements.
One nice thing about the drag-and-drop mode of operation is that it takes one of the stresses out of using ZModem. When you type
rz
at the remote system, SecureCRT pops up a file picker automatically. You then have about a minute to find and select the file before the remote side times out. This creates a race-against-the-clock vibe that isn't pleasant. Drag-and-drop lets you find the file at your leisure, then start the transfer with a single quick motion of the mouse.We do still use the manual method, starting the transfer with an explicit
rz
command. This is because SecureCRT lets you configure a per-session upload directory, which we point at the folder on the file server that always contains the latest build of the software that particular remote site is running. For such transfers, there is no race against the clock, since the file picker opens in the correct place to start with.

- 72,032
-
But how do I use this on a remote thing that runs some hacky linux? I just need to download files from there – Piotr Kula Oct 27 '22 at 15:09
Use "!" to convert the file to a ASCII-representation of your file (e.g. ! uuencode myfile.bin >uuencode.dat
). Then use ! cat uuencode.dat >target.dat
. After that use uudecode on the target side: ! uudecode target.dat >myfile.bin

- 18,492
-
Thanks I needed to do this because I was connecting to remote SSH that did not support the file system stuff.. NOt sure some hacky linux kernal just needed to download some files.. this worked for me – Piotr Kula Oct 27 '22 at 14:51
If you need to jump through one (or more) proxy servers, OpenSSH v7.3 onward supports a -J
.
Considering A → B → C, on hostA, just:
tar cf - file1 file_n | pv | ssh -C -J userB@hostB:portB userB@hostC -p portC 'tar xvf - -C hostC_destination_folder'
- Use as many hops as you want with ssh's
-J
option. - Omit the tar's remote
-C
to leave the files on home folder. - Send any files at once (text or binary).
- Increase speed by compressing the stream with ssh's
-C
(or tar's-z
). Particularly useful if the data is plain text (uncompressed). pv
monitor the progress of data through a pipe. An alternative could beprogress
.
Inspired on Florian Fida and Dan Garthwaite's answers.
Here's how to do it with Midnight Commander.
Related project: Magic Wormhole: Get things from one computer to another, safely.

- 2,712
scp file.foo user@myclient.com:file.foo
:P – rahmu Nov 28 '11 at 20:22