Random Project

Some notes for Linux version

In “sched_host_downtime”

$ECHOCMD is pretty useless, “echo” is a shell builtin.

if [ $# -gt 0 ]; then
usage

Should be: if [ $# -eq 0]; then usage

Also “usage” function should be defined before, not after.