Domain changed to archive.palanq.win . Feb 14-25 still awaits import.
[2 / 1 / ?]

ID:jZhl66yF No.12532020 View ViewReplyOriginalReport
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.