Answer the question
In order to leave comments, you need to log in
How can I find out which command appears in the maximum number of help categories (man)?
Actually, the question is in the topic. I selected a column using awk, and then I don’t know how to do it.
The list of all mana in the system can be found:man -k .
Answer the question
In order to leave comments, you need to log in
man sort
man uniq Head
-on solution:
man -k . | awk '{ print $1 }' | uniq -dc | sort -rn | head -1
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question