3

Is there an automatic way (through command line params for example) of keep searching from start of text when the end is reached?

(same as Notepad++ - Continue Search from top but with less linux command instead of Notepad++)

1 Answers1

4

I don't believe there is a way to do this automatically, but if you're doing incremental searches with just the single keystroke

n

anyway, then when you get to the end of the file just press

g

to go back to the top and continue searching incrementally with

n
dg99
  • 720