mirror of
https://github.com/qaiu/netdisk-fast-download.git
synced 2025-12-16 04:13:03 +00:00
6 lines
144 B
Bash
6 lines
144 B
Bash
#!/bin/sh
|
|
# set -x
|
|
LAUNCH_JAR="netdisk-fast-download-*.jar"
|
|
nohup java -Xmx512M -jar "$LAUNCH_JAR" "$@" >startup.log 2>&1 &
|
|
tail -f startup.log
|