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?
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.
You can try rsync. It's better suited for this job:
(And its manual page is worth reading.)
Don't put a slash after the source directory. Your code would look like this:
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.
The following will solve the problem, this has been fully tested on our continuous integration environment
Hope it helps
To copy only hidden files, Use this command
Actual game is the
/.[!.]*
tag that is referring to files starting with.
(hidden)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.
If password login is disabled on the remote machine, and the only way to login is via public key, then you can use this:
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.
As
scp
supports regular expressions, this will nicely do the trick for you:scp -rp src/(*|.*) user@server:dest/
Distributed revision control handles hidden files
Because of the CVE-2018-20685 vulnerability, the
/.
trick can no longer be used withscp
. However, distributed revision control likegit
or Hg Mecurial will handle hidden files like any other files. Here are the commands for my favourite Hg Mercurial:Subsequent changes will need to be committed again with
client:$ hg com -m "commit message"
and then pushed using theclient:$ hg push
command. Learn more about pushing changes from this Hg Mercurial cheat sheet.