This repository has been archived on 2022-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
prezto/modules/osx/functions/manb

25 lines
387 B
Plaintext
Raw Normal View History

2012-01-31 23:37:51 -05:00
#
# Opens man pages in Bwana.app.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
function manb {
2011-12-28 15:06:21 -05:00
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
}
2012-06-13 18:04:08 -04:00
2011-12-28 15:06:21 -05:00
manb "$@"