summaryrefslogtreecommitdiffstats
path: root/functions
blob: 562294076684a20a9160b30b27e737bd2bb03a6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
function perldoc {
    # XXX bash specific
    if type cpandoc > /dev/null 2>&1; then
        cpandoc "$@"
    else
        command perldoc "$@"
    fi
}

# vim:ft=sh: