I am trying to copy everything (hidden files, folders and subfolders) from
/home/old to /home/new
I'm trying,
cp -r /home/old/.* /home/new
cp -r -f /home/old/.* /home/new
In both cases it prompts for the overwrite confirmation, I tried A instead of Y to fast the process but if doesn't works. Since I have many files I am just tired of pressing y
Any commands to overcome this? It is a centOS 7, and I am just connecting to the VM through ssh.