mirror of
https://github.com/ReaJason/MemShellParty.git
synced 2026-09-21 22:50:42 +08:00
Only support jdk8, in jdk11 or jdk17 env, you should use file write and use urlClassLoader to load injectorClass or else.
9 lines
202 B
Bash
Executable File
9 lines
202 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
wait-for-it -t 0 db:3306
|
|
if [[ $(mysql -hdb -uroot -proot -e "SHOW DATABASES LIKE 'xxl_job';") == "" ]]; then
|
|
mysql -hdb -uroot -proot < /usr/src/tables_xxl_job.sql
|
|
fi
|
|
|
|
exec "$@" |