mirror of
https://git.netzspielplatz.de/docker-multiarch/jdownloader2-headless.git
synced 2025-11-08 19:09:31 +00:00
17 lines
196 B
Bash
Executable file
17 lines
196 B
Bash
Executable file
#!/bin/bash
|
|
|
|
function stopJD2 {
|
|
PID=$(cat JDownloader.pid)
|
|
kill $PID
|
|
wait $PID
|
|
exit
|
|
}
|
|
|
|
trap stopJD2 EXIT
|
|
|
|
java -Djava.awt.headless=true -jar JDownloader.jar &
|
|
|
|
while true; do
|
|
sleep inf
|
|
done
|
|
|