ad34f5a438
Submitted by: Philippe Charnier <charnier@xp11.frmug.org>
14 lines
292 B
Bash
Executable File
14 lines
292 B
Bash
Executable File
#!/bin/sh -
|
|
#
|
|
# $Id: 330.catman,v 1.1.1.1 1997/08/16 17:04:02 pst Exp $
|
|
#
|
|
|
|
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
|