X-Git-Url: https://git.madduck.net/code/myrepos.git/blobdiff_plain/66dc478e14c66b2865b39dc41dabd3a05de87656..7993c3fea43f94925a6a4e0a1f3f5731aeb80fdb:/mr diff --git a/mr b/mr index eb766d4..0a78df5 100755 --- a/mr +++ b/mr @@ -1629,14 +1629,26 @@ hg_trusted_checkout = hg clone $url $repo darcs_trusted_checkout = darcs get $url $repo git_bare_trusted_checkout = git clone --bare $url $repo + help = + case `uname -s` in + SunOS) + SHOWMANFILE="/usr/bin/man -f" + ;; + Darwin) + SHOWMANFILE="/usr/bin/man" + ;; + *) + SHOWMANFILE="/usr/bin/man -l" + ;; + esac if [ ! -e "$MR_PATH" ]; then error "cannot find program path" fi tmp=$(mktemp -t mr.XXXXXXXXXX) || error "mktemp failed" trap "rm -f $tmp" exit pod2man -c mr "$MR_PATH" > "$tmp" || error "pod2man failed" - man -l "$tmp" || error "man failed" + $SHOWMANFILE "$tmp" || error "man failed" list = true config = bootstrap =