I am trying to grep for a php function call
grep -Ri '->someFunction' .
But it's not working. What am I doing wrong?
It's not the quotes : try this :
grep -Ri -- '->someFunction' .
the --
part stands for end of options ; it's a shell trick.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With