mirror of
https://github.com/hohn/codeql-for-firefox.git
synced 2025-12-16 15:43:05 +01:00
12 lines
175 B
Bash
Executable File
12 lines
175 B
Bash
Executable File
#!/bin/sh
|
|
# Count SARIF results in a given file
|
|
|
|
if [ $# -ne 1 ]; then
|
|
echo "Usage: $0 file.sarif" >&2
|
|
exit 1
|
|
fi
|
|
|
|
file="$1"
|
|
|
|
jq '[.runs[].results[]] | length' "$file"
|