copy files in folder

PHOTO EMBED

Mon Jun 19 2023 16:20:57 GMT+0000 (Coordinated Universal Time)

Saved by @vs #bash

# -r recursively
# -p preserve original file attributes
cp -rp folder1 folder2

# exclude the ".git" folder
rsync -av --exclude='.git' folder1/ folder2/
content_copyCOPY