mirror of
https://github.com/keycloak/keycloak.git
synced 2025-12-16 20:15:46 -06:00
11 lines
167 B
Bash
Executable File
11 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"
|