Let's see if we want to find all file name as below format
gstreamer_abc.c
gstreamer_xyz.c
gstreamer_abcxyz.c
then we can use find command as below
find ./ -iname "gstreamer_*.c"
Same way i need to grep some APIs in file as below
gstABCNode()
gstAnythingCanBeHereNode()
gstXyzNode()
I am trying something
grep -rni "gst*Node" ./
grep -rni "gst^\*Node" ./
But it does not gives what i need here. First is it possible to search with grep like this or if possible then how to grep such pattern?