#shell
Zip files on macOS excluding __MAXOSX and hidden dot files
# Zips all files in the directory the command is run with exclusions
zip -r destination.zip . -x ".*" -x "__MAXOSX"
Casey
Full-Stack Developer
# Zips all files in the directory the command is run with exclusions
zip -r destination.zip . -x ".*" -x "__MAXOSX"