[2 / 1 / ?]
Quoted By:
I made a command that searches for a regex expression in all of the man files that I have and then prints the file names.
zgrep "$1" $(find $(manpath | tr : ' ') -name '*.gz') | tr : "\n" | awk '/^\// && /.gz$/' | uniq
unix pipes are fun.
zgrep "$1" $(find $(manpath | tr : ' ') -name '*.gz') | tr : "\n" | awk '/^\// && /.gz$/' | uniq
unix pipes are fun.