You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
404 B
24 lines
404 B
# |
|
# Opens man pages in Bwana.app. |
|
# |
|
# Authors: |
|
# Sorin Ionescu <sorin.ionescu@gmail.com> |
|
# |
|
|
|
function manb { |
|
local page |
|
if (( $# > 0 )); then |
|
for page in "$@"; do |
|
open "man:$page" 2>/dev/null |
|
if (( $? != 0 )); then |
|
print "$0: Bwana is not installed" >&2 |
|
break |
|
fi |
|
done |
|
else |
|
print 'What manual page do you want?' >&2 |
|
fi |
|
} |
|
compdef _man manb |
|
manb "$@" |
|
|
|
|