Hi I am trying to find all js & css files in one find command. I tried all of the below but in vain:
find WebContent -name \"*.[jc]ss?\" find WebContent
use the -iname option case insensitive
-iname
find WebContent \( -iname "*.js" -o -iname "*.css" \)