diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-01-25 19:18:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2001-01-25 19:18:43 +0000 |
commit | 98f744d503ff2a8b62f222bf4891f35ac4edceaa (patch) | |
tree | 0afda579eba1c3bd119b15efb3c65db8bcff88ba /distrib/mvme88k/ramdisk | |
parent | 8508265d49c9b3049cc792bb78efdacf0125b3a3 (diff) |
egrep -a to permit working with binary data in dmesg
Diffstat (limited to 'distrib/mvme88k/ramdisk')
-rw-r--r-- | distrib/mvme88k/ramdisk/install.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/distrib/mvme88k/ramdisk/install.md b/distrib/mvme88k/ramdisk/install.md index 75559d6837b..a070ad5d7d8 100644 --- a/distrib/mvme88k/ramdisk/install.md +++ b/distrib/mvme88k/ramdisk/install.md @@ -1,4 +1,4 @@ -# $OpenBSD: install.md,v 1.5 2000/01/24 04:51:55 smurph Exp $ +# $OpenBSD: install.md,v 1.6 2001/01/25 19:18:40 deraadt Exp $ # Copyright (c) 1996 The NetBSD Foundation, Inc. # All rights reserved. # @@ -57,11 +57,11 @@ md_machine_arch() { } md_get_diskdevs() { - egrep "^sd[0-9] " < /kern/msgbuf + egrep -a "^sd[0-9] " < /kern/msgbuf } md_get_cddevs() { - egrep "^cd[0-9] " < /kern/msgbuf + egrep -a "^cd[0-9] " < /kern/msgbuf } md_get_ifdevs() { |