Fixup fromcvs/togit conversion
[minix-pkgsrc.git] / audio / rio / files / find-lpt-port
blob7f7b5ef1224b54fcb7d519b7f480697ed5d48a94
1 #!@SH@
3 # $NetBSD: find-lpt-port,v 1.1 2000/01/11 11:32:11 agc Exp $
5 # Small shell script to find the lpt port easily
7 if [ -e /var/run/dmesg.boot ]; then
8         bootfile="/var/run/dmesg.boot"
9 else
10         bootfile='`dmesg`'
12 @AWK@ '/^lp[at][0-9]+/ { gsub("\-.*", "", $5); print $5 }' < $bootfile
13 exit 0