77

I often use SCP to copy files around - particularly web-related files. The problem is that whenever I do this, I can't get my command to copy hidden files (eg, .htaccess).

I typically invoke this:

scp -rp src/ user@server:dest/

This doesn't copy hidden files. I don't want to have to invoke this again (by doing something like scp -rp src/.* ... - and that has strange . and .. implications anyway.

I didn't see anything in the scp man page about an "include hidden files".

How can I accomplish this?

rascher
  • 1,056
  • 3
  • 13
  • 14

9 Answers9

77

That should absolutely match hidden files. The / at the end of the source says "every file under this directory". Nevertheless, testing and research bear you out. This is stupid behavior.

The "answer" is to append a dot to the end of the source:

scp -rp src/. user@server:dest/

The real answer is to use rsync.

Ken Sharp
  • 194
  • 10
Matt Simmons
  • 20,218
  • 10
  • 67
  • 114
  • Nice trick I did not realized this yet. – cstamas Jun 07 '09 at 19:06
  • 24
    rsync -avz -e ssh --progress src/ user@server:dest/ – MikeyB Jun 07 '09 at 23:23
  • 2
    I can't reproduce that behavior. `scp -r source/ host:source2` copies dot files. Works in OpenSSH 5.1 from 2007. – Mikel Mar 08 '11 at 20:33
  • 12
    Note that adding a `.` at the end no longer works (2019) due to security issues. This is explained here: https://superuser.com/questions/1403473/scp-error-unexpected-filename – Stéphane Feb 12 '19 at 21:44
29

You can try rsync. It's better suited for this job:

rsync -av src/ user@server:dest/

(And its manual page is worth reading.)

cstamas
  • 6,607
  • 24
  • 42
  • 2
    I _always_ use the --progress option for rsync, I can't live without it =D – Hofa Jun 07 '09 at 21:21
  • 1
    @Hofa I usually use -P because it is shorter, already includes --progress and also includes --partial which can make sense if I am already interested in its progress ;-) – cstamas Mar 31 '12 at 10:27
  • 1
    Use this if you need different port : rsync -av -e "ssh -p 2222" src/ user@server:dest/ – Brain90 Feb 05 '20 at 12:57
10

Don't put a slash after the source directory. Your code would look like this:

scp -rp src user@server:dest/

This will create a directory 'src' under 'dest' on the remote machine, with all the hidden files included. It's probably not exactly what you want, but it will copy hidden files in src.

kbyrd
  • 3,604
  • 2
  • 23
  • 34
3

The following will solve the problem, this has been fully tested on our continuous integration environment

scp -rp src/. user@server:dest/
example scp -rp /usr/src/code/. content001@172.11.11.11:/usr/dest/code/

Hope it helps

stevensagaar
  • 139
  • 2
  • 4
    After updating scp recently, this now results in `scp: error: unexpected filename: . `. Make sure to test whether it works with your distribution, fellow Googler :) – Moritz Friedrich Feb 11 '19 at 11:39
3

To copy only hidden files, Use this command

scp -rp /path_to_copy_hidden/.[!.]* user@host:/path_to_paste/

Actual game is the /.[!.]* tag that is referring to files starting with .(hidden)

0

None of the above scp solutions worked for me. However, I did find that the following worked on cygwin: scp -r directory/* host:directory The '*' matched all visible files and skipped the invisible.

Ray Cote
  • 109
  • 1
0

If password login is disabled on the remote machine, and the only way to login is via public key, then you can use this:

$ rsync -av -s 'ssh -i /path/to/your/private/SSH/key' --progress user1@remote.host:/remote/source/directory/ /local/destination/directory/

It copies hidden files too.

Also please note that "user1" must have the permissions to read those files, for example you can't copy other user's ssh folders with this method.

Gergely Lukacsy
  • 111
  • 1
  • 6
0

As scp supports regular expressions, this will nicely do the trick for you:

scp -rp src/(*|.*) user@server:dest/

-1

Distributed revision control handles hidden files

Because of the CVE-2018-20685 vulnerability, the /. trick can no longer be used with scp. However, distributed revision control like git or Hg Mecurial will handle hidden files like any other files. Here are the commands for my favourite Hg Mercurial:

server:$ sudo apt install mercurial
client:$ sudo apt install mercurial
client:$ hg init src
client:$ cd src/
client:$ hg addr
client:$ hg com -m "first commit"
client:$ cd
client:$ hg clone src ssh://user@server/dest/

Subsequent changes will need to be committed again with client:$ hg com -m "commit message" and then pushed using the client:$ hg push command. Learn more about pushing changes from this Hg Mercurial cheat sheet.

Serge Stroobandt
  • 335
  • 1
  • 4
  • 13