I'm trying to merge my CSS files the following way:
find /Applications/MAMP/htdocs/css/ -type f -name "*.css" -exec cat {} + > ./temporary/css_backend_merged.css
That works great, but I want to include only files that begin with a certain prefix e.g. "include_". Does anyone know how to tweak the find command to do that?
Thanks a lot!
Just add the prefix in the
-name
argument.ok guys, just found it myself :)
find /Applications/MAMP/htdocs/css/ -type f -name "incl_*.css" -exec cat {} + > ./temporary/css_backend_merged.css