Skip to content

Instantly share code, notes, and snippets.

@smerrill
Created May 5, 2011 22:31
Show Gist options
  • Select an option

  • Save smerrill/958113 to your computer and use it in GitHub Desktop.

Select an option

Save smerrill/958113 to your computer and use it in GitHub Desktop.
Minify js/css in this directory and all subdirectories.
gfind . -type f -name *.css -print0 | xargs -0 yuicompressor -o '.css$:.css'
gfind . -type f -name *.js -print0 | xargs -0 yuicompressor -o '.js$:.js'
@falconindy
Copy link
Copy Markdown

find -print0 | xargs -0

please!

@smerrill
Copy link
Copy Markdown
Author

smerrill commented May 6, 2011

Yes sir!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment