mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 02:14:13 +00:00
* address some staticcheck issues * address some staticcheck issues * address some staticcheck issues * address some staticcheck issues
9 lines
146 B
Bash
Executable file
9 lines
146 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ $# -lt 1 ]; then
|
|
echo "Usage: $0 {.bnf file} [expressions]" 1>&2
|
|
exit 1
|
|
fi
|
|
bnf="$1"
|
|
shift
|
|
./build $bnf && echo && main "$@"
|