Answers for "How do I tell which command has the longest manual on my system?"

0

How do I tell which command has the longest manual on my system?

$ find /usr/share/man/ -type f -exec ls -S {} + 2>/dev/null | head | while \
  read -r file; do printf "%-40s" "$file"; \
  man "$file" 2>/dev/null | wc -lwm; done | sort -nrk 4
Posted by: Guest on April-25-2021

Code answers related to "How do I tell which command has the longest manual on my system?"

Browse Popular Code Answers by Language