Skip to content

Instantly share code, notes, and snippets.

@ccurtin
Last active February 4, 2018 21:41
Show Gist options
  • Save ccurtin/8c62b50d76863040688b81babd0ade4a to your computer and use it in GitHub Desktop.
Save ccurtin/8c62b50d76863040688b81babd0ade4a to your computer and use it in GitHub Desktop.
Zip up a folder and all subdirs via terminal
find /FULL/PATHNAME/OF/WHAT/YOU/WANT/TO/SAVE/ -path '*/.*' -prune -o -type f -print | zip ~/WHERE_TO_SAVE.zip -@
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment