s/timestemps/timestamps/ in comments.

pull/38/head
andvar 2024-05-11 06:31:59 +00:00
parent bcaa0f35c3
commit 8fe9dcb1b3
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh
# $NetBSD: install.sub,v 1.65 2023/07/29 15:46:45 tsutsui Exp $
# $NetBSD: install.sub,v 1.66 2024/05/11 06:31:59 andvar Exp $
#
# Copyright (c) 1996 The NetBSD Foundation, Inc.
# All rights reserved.
@ -1613,12 +1613,12 @@ mi_mount_kernfs() {
}
mi_filter_msgbuf() {
# Remove timestemps, sort.
# Remove timestamps, sort.
sed -e 's/^\[[0-9. ]*\] //' < /kern/msgbuf | sort -u
}
mi_filter_dmesg() {
# Remove timestemps, sort.
# Remove timestamps, sort.
dmesg | awk '{ h=$0; gsub("^[[0-9. ]*] ", "", h); print h; }' \
| sort -u
}