Fixed the uname -s output case statement issue

This commit is contained in:
Ethan Edwards 2020-06-03 22:58:26 -04:00
parent 3ec7e1a038
commit 87ef58abfc

View file

@ -8,12 +8,12 @@ get_percent()
echo $percent
;;
Mac)
Darwin)
percent=$(ps -A -o %cpu | awk '{s+=$1} END {print s "%"}')
echo $percent
;;
Windows)
CYGWIN*|MINGW32*|MSYS*|MINGW*)
# TODO - windows compatability
;;
esac
@ -25,5 +25,6 @@ main()
echo "CPU $cpu_percent"
sleep 10
}
#run main driver
# run main driver
main