Comment by jmfayard
8 years ago
That's full text search, not having directly the argument definition. If you search "-l" in "man ls", it will be only your 8th occurence.
8 years ago
That's full text search, not having directly the argument definition. If you search "-l" in "man ls", it will be only your 8th occurence.
Sure, you're right, it's not the same thing. I just gave a simple example of something that's close, but I'm not even using a bash function like that myself. If I did, though, I guess the 8th occurrence wouldn't be so bad in my book, since the results can be scanned rather quickly.
You could always make your function more clever, e.g.:
or
but most probably, you will still run into edge cases that won't work properly. For instance, only one of the two versions above still works with "test -e".
You can actually search for ' -l' (two spaces in front) and abuse the man layout engine to find the point at which the flag itself is defined. Makes the man pages a lot more useful in my opinion.