Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 09 Dec 2025 12:54:32 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 291511] /usr/sbin/devinfo has lost space character between device name and description...
Message-ID:  <bug-291511-227-tmk6V60oPI@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-291511-227@https.bugs.freebsd.org/bugzilla/>

index | next in thread | previous in thread | raw e-mail

https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=291511

--- Comment #1 from Peter Eriksson <pen@lysator.liu.se> ---
Quick and dirty workaround:

# cd /usr/sbin
# mv devinfo devinfo.real
# cat >devinfo
#!/bin/sh
exec /usr/sbin/devinfo.real "$@" | sed -e 's/</ </'
^D
# chmod +x devinfo

-- 
You are receiving this mail because:
You are the assignee for the bug.

home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-291511-227-tmk6V60oPI>