alliance/dev/scripts/misc/alc_man_test

12 lines
164 B
Bash
Executable File

#!/bin/sh
for file in *.?
do
echo "Press <ENTER> key to see $file man [Ctrl-C to abort]" ;
read
read
man ./$file 2> /dev/ttyp4 ;
done