mirror of
https://github.com/Stichting-MINIX-Research-Foundation/pkgsrc-ng.git
synced 2025-09-22 19:24:22 -04:00
14 lines
297 B
Plaintext
14 lines
297 B
Plaintext
#!@SH@
|
|
#
|
|
# $NetBSD: find-lpt-port,v 1.2 2007/06/15 15:13:34 jlam Exp $
|
|
#
|
|
# Small shell script to find the lpt port easily
|
|
|
|
if [ -e /var/run/dmesg.boot ]; then
|
|
bootfile="/var/run/dmesg.boot"
|
|
else
|
|
bootfile='`dmesg`'
|
|
fi
|
|
@AWK@ '/^lp[at][0-9]+/ { gsub("\-.*", "", $5); print $5 }' < $bootfile
|
|
exit 0
|