9 lines
80 B
Bash
9 lines
80 B
Bash
#!/usr/bin/env bash
|
|
|
|
echo_ok() {
|
|
echo "$*"
|
|
}
|
|
|
|
echo_err() {
|
|
fail_helper "$*"
|
|
}
|