bin/perldoc

Sun, 25 Apr 2021 00:57:55 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 25 Apr 2021 00:57:55 -0500
changeset 899
2315aad34ca3
parent 774
d6a54f86ab10
permissions
-rwxr-xr-x

ok this format-on-write is more reliable

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