Skip to main content

Bash: How do I zip a drupal 8 directory but exclude the sites/default/files subfolder?

zip -9 -r --exclude=*sites/default/files* locald8.zip locald8/

This command will zip the entire website folder by excluding the sites/default/files folder and subfolders.

terminal