I have two directories and one is empty.
The first directory has many sub directories with hidden files. When I cp -r
content from first directory to the second one, the hidden files gets copied too. Any solutions to escape them?
You can use rsync:
rsync -av --exclude=".*" src dest