1
1
mirror of https://github.com/wader/fq.git synced 2024-11-22 15:45:45 +03:00
fq/dev/testjq.sh
2021-09-19 11:58:37 +02:00

11 lines
121 B
Bash
Executable File

#!/bin/sh
set -eu
FQ="$1"
shift
for f in "$@"; do
echo "testjq $f"
"$FQ" -nr -L "$(dirname "$f")" -f "$f"
done