mirror of
https://github.com/morrownr/8821cu-20210916.git
synced 2024-11-03 02:03:38 +00:00
35 lines
638 B
Bash
35 lines
638 B
Bash
|
#!/bin/bash
|
||
|
#
|
||
|
SCRIPT_NAME="save-log.sh"
|
||
|
#
|
||
|
# 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
|
||
|
#
|
||
|
if [[ $EUID -ne 0 ]]; then
|
||
|
echo "You must run this script with superuser (root) privileges."
|
||
|
echo "Try: \"sudo ./${SCRIPT_NAME}\""
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
# Deletes existing log
|
||
|
rm -f -- rtw.log
|
||
|
|
||
|
dmesg | cut -d"]" -f2- | grep "RTW" >> rtw.log
|
||
|
RESULT=$?
|
||
|
|
||
|
if [[ "$RESULT" != "0" ]]; then
|
||
|
echo "An error occurred while running: ${SCRIPT_NAME}"
|
||
|
echo "Did you set a log level > 0 ?"
|
||
|
exit 1
|
||
|
else
|
||
|
echo "rtw.log saved successfully."
|
||
|
exit 0
|
||
|
fi
|