Created
November 2, 2012 11:18
-
-
Save htor/4000306 to your computer and use it in GitHub Desktop.
woman
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# search and browse manpages interactively | |
function woman { | |
err="usage: $FUNCNAME [object]" | |
test $# -ne 1 && echo $err && return 1 | |
IFS=$'\n' manpgs=( $(apropos $1 | grep ^$1) ) | |
select line in ${manpgs[@]}; do | |
n=${line%%) *}; n=${n#* (} | |
man ${n} ${line%% *} | |
return 0 | |
done | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment