So am trying to run unix clang --help | grep -f
command to get a list of lines in clang help which contain text "-f". Clearly this does not do the job, because grep thinks -f is an option for him instead of thinking that is the pattern to search for.
The question is: how do I search for patterns which start with dash?