mirror of
https://github.com/Mercury-Language/mercury.git
synced 2026-04-22 12:53:47 +00:00
16 lines
218 B
Bash
16 lines
218 B
Bash
#!/bin/sh
|
|
if [ $# != 1 ]
|
|
then
|
|
echo "usage: `basename $0` module-name" 1>&2
|
|
exit 1
|
|
fi
|
|
|
|
file="@LIBDIR@/$1.int"
|
|
|
|
if [ -r $file ]
|
|
then
|
|
${PAGER:-more} $file
|
|
else
|
|
echo "`basename $0`: no interface file for $1." 1>&2
|
|
fi
|