bin/perldoc@650ca91e3197 (annotated)
bin/perldoc
Wed, 15 Aug 2018 13:26:46 -0400
- author
- Meredith Howard <mhoward@roomag.org>
- date
- Wed, 15 Aug 2018 13:26:46 -0400
- changeset 713
- 650ca91e3197
- parent 672
-
c6336b1897e9
- child 743
-
76c4c96d8b9f
- permissions
- -rwxr-xr-x
copy binaries in case build fails
672
|
1
|
#!/bin/sh
|
|
2
|
set -eu
|
|
3
|
|
|
4
|
if [ -x "$(command -v cpandoc)" ]; then
|
|
5
|
exec cpandoc $*
|
|
6
|
fi
|
|
7
|
exec perldoc $*
|