How can I search for newlines (or end of lines) as part of a search using less?
For example, I'd like to search for length=9\n, but don't want to merely search for length==9 because that'd get matches for length=90\n.
I'm using GNU bash, version 4.0.33(1)-release (x86_64-pc-linux-gnu) on Ubuntu 9.10 (Karmic Koala)
I tried reading the friendly manual, but it said
/patternSearch forward in the file for the N-th line containing the pattern. N defaults to 1. The pattern is a regular expression, as recognized by the regular expression library supplied by your system. The search starts at the second line displayed (but see the -a and -j options, which change this).
and I don't know how to RTFM beyond that.
/\<length=9\>will find "length=9" that's anywhere on a line without matching "length=90" or "stringlength=9". Seeman 7 regexandman grepfor more. – Dennis Williamson Dec 20 '10 at 0:46