Create get-data.sh

This commit is contained in:
2023-12-03 16:46:45 -06:00
parent 68accd273a
commit 5f8045b6b9

13
get-data.sh Executable file
View File

@@ -0,0 +1,13 @@
#!/usr/bin/env bash
source /opt/idssys/defaults/colors.inc
source /opt/idssys/defaults/default.inc
if [ ${1-x} ]; then
case ${1} in
cpuusage) GET_CPU_USAGE;;
esac
fi
exit 0