mirror of
https://github.com/nsacyber/HIRS.git
synced 2024-12-22 14:22:29 +00:00
8 lines
241 B
Bash
8 lines
241 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
# Calls the the_tcg_event_tool and passes in parameters
|
||
|
scriptDir=$(dirname -- "$(readlink -f -- "${BASH_SOURCE[0]}")")
|
||
|
baseDir=${scriptDir%/*}
|
||
|
libDir=$baseDir"/lib/"
|
||
|
jar="tcg_eventlog_tool-1.0.jar";
|
||
|
java -jar $libDir$jar "$@"
|