shellnotes/util/l/l.sh
dmarakom6 c33d0a675c sdfailed.txt in shellnotes -l
Added the set-defaults.sh log as an option in the logfile viewer.
2021-04-18 13:06:44 +03:00

37 lines
No EOL
1 KiB
Bash

:<<'info'
shellnotes - l.sh
(C) Dimitris Marakomihelakis
Released under the "All rights reserved" category. See the RIGHTS.txt file
in /docs/github/ for its full text.
info
case $1 in -l|--logs )
clear
echo "Please select a logfile to open"
echo "-------------------------------"
echo
echo "1. disablement errors"
echo "2. enablement errors"
echo "3. installation errors"
echo "4. update errors"
echo "5. uninstallation errors"
echo "6. set-defaults errors"
echo "For more info about which one to choose, read /docs/system/loggingsystem.txt"
echo
echo -n "[1,2,3,4,5]: " && read input
if [ $input = 1 ]; then
less ~/.shellnotes/logs/disfailed.txt
elif [ $input = 2 ]; then
less ~/.shellnotes/logs/enfailed.txt
elif [ $input = 3 ]; then
less ~/.shellnotes/logs/ifailed.txt
elif [ $input = 4 ]; then
less ~/.shellnotes/logs/ufailed.txt
elif [ $input = 5 ]; then
less ~/.shellnotes/logs/uninfailed.txt
elif [ $input = 6 ]; then
less ~/.shellnotes/logs/sdfailed.txt
else
echo "Invalid input."
fi
esac