top | item 47092011

(no title)

wpollock | 9 days ago

Here's a handy shell script to show only the options from a command's man page:

   showoptions() {
      man -s 1 "$*" |col -bx |awk '/^[ ]*-/,/^$/' |less
   }
(Won't work for every man page, but most of them where options start with a dash.)

Enjoy!

discuss

order

No comments yet.