1
0
Files
irix-657m-src/eoe/cmd/bsd/syslogpp-mr.sh
2022-09-29 17:59:04 +03:00

16 lines
261 B
Bash

#!/bin/sh
# Filter out the SYSLOG lines generated every time
# syslogd is stopped and restarted in the miniroot
# since this will be a common occurrence.
read line
case "$line" {
syslogd:*restart* | syslogd:*signal\ 15* )
exit 0
;;
}
echo $line
exit 0