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 + +