Created
May 5, 2011 22:31
-
-
Save smerrill/958113 to your computer and use it in GitHub Desktop.
Minify js/css in this directory and all subdirectories.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
gfind . -type f -name *.css -print0 | xargs -0 yuicompressor -o '.css$:.css' | |
gfind . -type f -name *.js -print0 | xargs -0 yuicompressor -o '.js$:.js' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
find -print0 | xargs -0
please!