Skip to content

Instantly share code, notes, and snippets.

@ferdisahin
Last active July 4, 2023 08:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ferdisahin/790576a4fa5a9083a0e9a3292047568f to your computer and use it in GitHub Desktop.
Save ferdisahin/790576a4fa5a9083a0e9a3292047568f to your computer and use it in GitHub Desktop.
Copying files by exclude folders in macos terminal
One Folder:
rsync -av -progress --exclude="node_modules" copyPath destinationFolder
Multiple Folder:
rsync -av -progress --exclude="node_modules" --exclude="vendor" --exclude=".git" copyPath destinationFolder
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment