svgalib-1/doc/tman
2011-02-24 00:22:00 -08:00

12 lines
152 B
Bash
Executable file

#!/bin/sh
for i in "$@"
do
for j in 1 3 5 6 7
do
FILE=man$j/$i.$j.gz
if [ -f $FILE ]
then
gunzip < $FILE | nroff -man | more
fi
done
done