mirror of
https://github.com/pstadler/metrics.sh.git
synced 2025-02-28 13:59:12 -05:00
12 lines
174 B
Bash
12 lines
174 B
Bash
#!/bin/sh
|
|
|
|
report () {
|
|
local metric=$1
|
|
local value=$2
|
|
|
|
echo $metric: $value
|
|
}
|
|
|
|
docs () {
|
|
echo "Print to standard output, e.g. the TTY you're running the script in."
|
|
} |