2012-02-01 05:37:51 +01:00
|
|
|
#
|
|
|
|
# Opens man pages in Preview.app.
|
|
|
|
#
|
|
|
|
# Authors:
|
|
|
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
|
|
|
#
|
|
|
|
|
2012-03-23 19:57:51 +01:00
|
|
|
function manp {
|
2011-12-28 20:54:19 +01:00
|
|
|
local page
|
|
|
|
if (( $# > 0 )); then
|
|
|
|
for page in "$@"; do
|
|
|
|
man -t "$page" | open -f -a Preview
|
|
|
|
done
|
|
|
|
else
|
|
|
|
print 'What manual page do you want?' >&2
|
|
|
|
fi
|
|
|
|
}
|
2012-06-14 00:04:08 +02:00
|
|
|
|
2011-12-28 20:54:19 +01:00
|
|
|
manp "$@"
|
|
|
|
|