How can you count the number of the character <
in your files?
I am trying to count the number of the character "<" in my files, similarly as in Vim by
%s/<//gn
I run
find * -type f | xargs sed 's/<//gn'
I get
sed: -e expression #1, char 7: unknown option to `s'
This error suggests me that Vim's :s -mode is not like SED.