I want to run find -name with multiple file types. Eg.
find -name *.h,*.cpp
Is this possible?
find . -name "*.h" -or -name "*.cpp"
works for me.