Linux / Unix: scp Copy All Hidden Dot Files
To copy all hidden dot files using scp in Linux or Unix, you need to include the -r option to copy the directory recursively, and the -a option to preserve the file attributes such as permissions, timestamps, and symbolic links: scp -r -a user@source_host:/path/to/source/directory/ /path/to/destination/directory/ In this example, user is the username on the source … Read more