Hi,
I am trying to use the cscope-indexer script. But I want to know how to change the following to include *.mm
and *.java
files?
egrep -i '\.([chly](xx|pp)*|cc|hh)$' | \
sed -e '/\/CVS\//d' -e '/\/RCS\//d' -e 's/^\.\///' | \
sort > $LIST_FILE
I tried
egrep -i '\.([chly](xx|pp)*|cc|hh|mm|java)$'
it does not work.