Skip to content

Instantly share code, notes, and snippets.

@nikolazic
Last active September 9, 2021 14:38
Show Gist options
  • Save nikolazic/9475345 to your computer and use it in GitHub Desktop.
Save nikolazic/9475345 to your computer and use it in GitHub Desktop.
Tar Magento Media directory excluding cache files
tar -cvf ~/media-`date +%Y%m%d`.tar --exclude-vcs --exclude='*.htaccess' --exclude='*/cache/*' --exclude='*/cache' --exclude='*/.thumbs/*' --exclude='*/.thumbs' --exclude='*/tmp/*' --exclude='*/tmp' --exclude='*/js/*' --exclude='*/js' --exclude='*/css/*' --exclude='*/css' --exclude='*/captcha/*' --exclude='*/captcha' --exclude='*/css_secure/*' --exclude='*/css_secure' --exclude='*/customer/*' --exclude='*/customer' --exclude='*/dhl/*' --exclude='*/dhl' --exclude='*/downloadable/*' --exclude='*/downloadable' --exclude='*/xmlconnect/*' --exclude='*/xmlconnect' media
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment