I would like to find all files that end with .c, .R, or .Rd. I tried
.c
.R
.Rd
find . -iname \"*.[cR]\" -print
Here you go =)
find -name "*.c" -o -name "*.R" -o -name "*.Rd"
If it's just the 3 extension types that you are looking for, I'd recommend staying away from regex and just using the -o (as in "or") operator to compose your search instead.
-o