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.
15 lines
249 B
15 lines
249 B
13 years ago
|
# Open man pages in Preview.
|
||
|
function manp() {
|
||
|
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 "$@"
|
||
|
|