mirror of
https://github.com/keycloak/keycloak.git
synced 2026-04-15 22:09:46 -04:00
10 lines
167 B
Bash
Executable file
10 lines
167 B
Bash
Executable file
#!/bin/bash -e
|
|
|
|
LOG_DIR="$1"
|
|
|
|
if [ "$LOG_DIR" == "" ]; then
|
|
echo "usage: parse-logs.sh <log directory>"
|
|
exit 1
|
|
fi
|
|
|
|
java -jar target/test-logs-parser.jar "$1" "$2"
|