mirror of
https://github.com/johnkerl/miller.git
synced 2026-07-27 09:48:46 +00:00
10 lines
146 B
Bash
Executable file
10 lines
146 B
Bash
Executable file
#!/bin/bash
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: $0 {case name}" 1>&2
|
|
exit 1
|
|
fi
|
|
name="$1"
|
|
shift
|
|
|
|
cat "$@" | uind -s > reg_test/case-${name}.sh
|