2015-02-21 18:18:27 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
report () {
|
2015-03-14 21:44:06 +01:00
|
|
|
local metric=$1
|
|
|
|
local value=$2
|
|
|
|
|
|
|
|
echo $metric: $value
|
2015-02-22 20:45:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
docs () {
|
|
|
|
echo "Print to standard output (e.g. the TTY you're running the script in)"
|
2015-02-21 18:18:27 +01:00
|
|
|
}
|