mirror of
https://github.com/qaiu/netdisk-fast-download.git
synced 2025-12-15 11:53:02 +00:00
7 lines
145 B
Bash
7 lines
145 B
Bash
#!/bin/bash
|
|
# set -x
|
|
LAUNCH_JAR="netdisk-fast-download.jar"
|
|
nohup java -Xmx512M -jar "$LAUNCH_JAR" "$@" >startup.log 2>&1 &
|
|
tail -f startup.log
|
|
|