31 lines
601 B
Bash
31 lines
601 B
Bash
|
|
#!/bin/sh
|
||
|
|
|
||
|
|
MANDIR=$1
|
||
|
|
shift 1
|
||
|
|
MANPAGES=$*
|
||
|
|
|
||
|
|
for I in $MANPAGES
|
||
|
|
do
|
||
|
|
SECTION=`echo $I | grep -o '.$'`
|
||
|
|
DIR="$MANDIR/man$SECTION"
|
||
|
|
if [ ! -d "$DIR" ]
|
||
|
|
then
|
||
|
|
mkdir "$DIR"
|
||
|
|
fi
|
||
|
|
|
||
|
|
BASE=`basename $I`
|
||
|
|
|
||
|
|
echo "Installing manpage \"$BASE\" in $DIR"
|
||
|
|
cp $I $DIR
|
||
|
|
done
|
||
|
|
|
||
|
|
cat << EOF
|
||
|
|
======================================================================
|
||
|
|
The man pages have been installed. You may uninstall them using the command
|
||
|
|
the command "make uninstallman" or make "uninstall" to uninstall binaries,
|
||
|
|
man pages and shell scripts.
|
||
|
|
======================================================================
|
||
|
|
EOF
|
||
|
|
|
||
|
|
exit 0
|