3
Aldar
6y

Stupid shell globbing! I always forget that * does not include hidden files, then get all surprised that a 1:1 copy doesn't work the same, ugh!

I need to learn to use rsync dir-from/ dir-to/ instead of rsync ./* dir-to/...

Comments
  • 1
    @kescherRant issue with that, it only copies hidden files, and so is one extra command.

    Much better, imo, is to omit the globbing selector all together, and, for example, use what I wrote in the post.
  • 1
    @Aldar Agreed.
Add Comment