Linux – find only files with certain prefix

findlinux

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!

Best Answer

Just add the prefix in the -name argument.

find /Applications/MAMP/htdocs/css/ -type f -name "include_*.css" -exec cat {} + > /temporary/css_backend_merged.css