I am trying to use less (in cygwin) with an initial command of &pattern:
printf 'A\nB\n' | less '+&B'
Give me the text "&/B" at the topleft of my screen, and I have to press ENTER to do the actual filtering.
I was expecting it to do the filtering right away.
(
printf 'A\nB\n' | less '+/B'
Here line B is at top of screen, without the need for pressing ENTER
)