Update 2024-09-27 08:17 OpenBSD/amd64-x13
This commit is contained in:
parent
0c2771e758
commit
f0c311a19b
27
.bin/senddmesg
Executable file
27
.bin/senddmesg
Executable file
@ -0,0 +1,27 @@
|
||||
#!/bin/sh
|
||||
|
||||
TO=dmesg@openbsd.org
|
||||
#TO=sh@codevoid.de
|
||||
FROM=sdk@openbsd.org
|
||||
SUBJECT="$1"
|
||||
|
||||
if [ -z $SUBJECT ]
|
||||
then
|
||||
SUBJECT="$(sysctl -n hw.version) - $(doas what /bsd | grep OpenBSD | cut -d"(" -f1 | tr -d '\t')"
|
||||
fi
|
||||
|
||||
echo "From: $FROM"
|
||||
echo "To: $TO"
|
||||
echo "Subject: $SUBJECT"
|
||||
echo -n "Send with subject [y/N]? "
|
||||
read $REPLY
|
||||
|
||||
case $REPLY in
|
||||
[yY]) ;;
|
||||
*) echo "ok, bye."; exit 0;
|
||||
esac
|
||||
|
||||
(dmesg; sysctl hw.version hw.model hw.sensors) | \
|
||||
mail -r $FROM -s "$SUBJECT" $TO
|
||||
|
||||
echo "sent."
|
Loading…
Reference in New Issue
Block a user