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