bin/perldoc

Sun, 10 Nov 2019 00:07:26 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 10 Nov 2019 00:07:26 -0600
changeset 818
3671ad077d67
parent 774
d6a54f86ab10
permissions
-rwxr-xr-x

fix tabline ignores

#!/bin/sh
set -eu

if [ -t 1 ]; then
  export PERLDOC="-oterm ${PERLDOC:-}"
fi

if [ -x "$(command -v cpandoc)" ]; then
  exec cpandoc $*
fi

BIN="$(which -a perldoc | grep -v $0 | head -n 1)"
exec $BIN $*

mercurial