Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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
Comment

PREVIOUS NEXT
Code Example
Shell :: disk usuage 
Shell :: git pull mirroring 
Shell :: copy from local to remote machine (fast) 
Shell :: command operative system linux 
Shell :: Clone gigamono repository 
Shell :: ubuntu change night light intensity 
Shell :: 2FA git commands 
Shell :: office 365 for ubuntu 
Shell :: bower install notify 
Shell :: sqlmap enumerate databases for login page 
Shell :: how to delete a directory for a different user in linux 
Shell :: how to create project in ssh mobaxterm 
Shell :: pattern matching alias linux 
Shell :: how to change colors in terminal linux outputs 
Shell :: install any desc ubunto 
Shell :: django flush sessions on server startup 
Shell :: shell loop terminating after command 
Shell :: xampp in manjaro linux 
Shell :: redirect folder to 403 
Shell :: on in get first two digit start with two numbers c# 
Shell :: get bash name wget down loaded file 
Shell :: The lsb_release command ubuntu faq 
Shell :: vim command to select all text in file 
Shell :: grep two different ocurrencies 
Shell :: create repository in github using command line 
Shell :: inspect changes after git fetch 
Shell :: force slack to close mac 
Shell :: grep simon 
Shell :: Storage on / folder 
Shell :: linux reset date on file 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =