1
0
mirror of https://github.com/dcarrillo/prezto.git synced 2024-07-03 15:50:28 +00:00
prezto/modules/osx/functions/manp

20 lines
320 B
Plaintext
Raw Normal View History

2012-02-01 04:37:51 +00:00
#
# Opens man pages in Preview.app.
#
# Authors:
# Sorin Ionescu <sorin.ionescu@gmail.com>
#
function manp {
local page
if (( $# > 0 )); then
for page in "$@"; do
2023-01-29 02:29:09 +00:00
mandoc -T pdf "$(/usr/bin/man -w $page)" | open -fa Preview
done
else
print 'What manual page do you want?' >&2
fi
}
2012-06-13 22:04:08 +00:00
manp "$@"