14 lines
246 B
Bash
Executable File
14 lines
246 B
Bash
Executable File
#!/bin/sh -
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
exit 0 # do not run by default
|
|
|
|
if [ -x /usr/libexec/catman.local -a -d /usr/share/man/cat1 ] ; then
|
|
echo ""
|
|
echo "Reformatting manual pages:"
|
|
|
|
echo /usr/libexec/catman.local "${MANPATH}" | su -fm man
|
|
fi
|