11 lines
156 B
Bash
Executable File
11 lines
156 B
Bash
Executable File
#! /usr/bin/env bash
|
|
|
|
base=$(dirname "$0")
|
|
|
|
if [ "$#" = 0 ]; then
|
|
echo "usage: $(basename "$0") <cmdline>"
|
|
exit 1
|
|
fi
|
|
|
|
"$base/btest-rst-cmd" -o "$@"
|