bin/perldoc

Sun, 19 Feb 2023 22:51:18 -0600

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 19 Feb 2023 22:51:18 -0600
changeset 1038
a1321a7e0b77
parent 774
d6a54f86ab10
permissions
-rwxr-xr-x

ensure nvim directory eixsts

#!/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