15 lines
203 B
Bash
15 lines
203 B
Bash
#!/usr/bin/env bash
|
|
|
|
set -u
|
|
|
|
p1() { echo 'Not yet implemented'; }
|
|
p2() { echo 'Not yet implemented'; }
|
|
|
|
main() {
|
|
local -r input="$(<"${1:-/dev/stdin}")"
|
|
|
|
time p1 "$input"
|
|
echo
|
|
time p2 "$input"
|
|
}
|