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.
21 lines
314 B
21 lines
314 B
13 years ago
|
#
|
||
|
# Opens man pages in Preview.app.
|
||
|
#
|
||
|
# Authors:
|
||
|
# Sorin Ionescu <sorin.ionescu@gmail.com>
|
||
|
#
|
||
|
|
||
13 years ago
|
function manp {
|
||
13 years ago
|
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
|
||
|
}
|
||
|
compdef _man manp
|
||
|
manp "$@"
|
||
|
|