Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. find public/media -type f \
  4. ! -name ".DS_Store" \
  5. ! -name ".htaccess" \
  6. ! -path "public/media/catalog/*cache*" \
  7. ! -path "public/media/css*" \
  8. ! -path "public/media/js*" \
  9. ! -path "public/media/import/*" \
  10. ! -path "public/media/wysiwyg/.thumbs/*" \
  11. ! -path "public/media/xmlconnect/*" \
  12. -print0 \
  13. tar --create \
  14. --gzip \
  15. --verbose \
  16. --file="tools/assets/development/media.$(date +"%Y-%m-%d").tar.gz" \
  17. --null \
  18. --files-from=-
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement