With grep I can search for the start and end of a word with
grep -e '\<leg\>' <where to search>
this would find I have a leg. but not play allegro here.
Ripgrep (0.10.0) does not seem to support this way of writing this regular expression. My question thus is:
How to "grep" for occurrences at the begin/end of a word with ripgrep?