mirror of
https://github.com/wader/fq.git
synced 2024-11-25 23:13:19 +03:00
11 lines
121 B
Bash
Executable File
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
|