mirror of
https://github.com/wader/fq.git
synced 2024-11-22 15:45:45 +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
|