From 5f8045b6b92657d88f815d54f9de8159579f2ddc Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Sun, 3 Dec 2023 16:46:45 -0600 Subject: [PATCH] Create get-data.sh --- get-data.sh | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100755 get-data.sh diff --git a/get-data.sh b/get-data.sh new file mode 100755 index 0000000..a4fc89c --- /dev/null +++ b/get-data.sh @@ -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 + +