8821cu-20210916/save-log.sh

34 lines
626 B
Bash
Raw Normal View History

#!/bin/sh
2023-01-27 05:47:52 +00:00
2022-11-17 14:26:57 +00:00
# Purpose: Save a log file with RTW lines only.
#
# To make this file executable:
#
# $ chmod +x save-log.sh
#
# To execute this file:
#
# $ sudo ./edit-options.sh
2023-01-27 05:47:52 +00:00
SCRIPT_NAME="save-log.sh"
if [ "$(id -u)" -ne 0 ]; then
2022-11-17 14:26:57 +00:00
echo "You must run this script with superuser (root) privileges."
echo "Try: \"sudo ./${SCRIPT_NAME}\""
exit 1
fi
2023-01-26 17:52:27 +00:00
# deletes existing log
2022-11-17 14:26:57 +00:00
rm -f -- rtw.log
dmesg | cut -d"]" -f2- | grep "RTW" >> rtw.log
RESULT=$?
if [ "$RESULT" != "0" ]; then
2022-11-17 14:26:57 +00:00
echo "An error occurred while running: ${SCRIPT_NAME}"
echo "Did you set a log level > 0 ?"
exit 1
else
echo "rtw.log saved successfully."
fi