bin/perldoc

Sun, 17 May 2020 01:08:28 -0500

author
Meredith Howard <mhoward@roomag.org>
date
Sun, 17 May 2020 01:08:28 -0500
changeset 860
60667f14090c
parent 774
d6a54f86ab10
permissions
-rwxr-xr-x

add nimlsp, always load plugin

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