You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
136 B
Bash
9 lines
136 B
Bash
4 months ago
|
#!/bin/sh
|
||
|
rm -f tpid
|
||
|
|
||
|
java -Dfile.encoding=UTF-8 -Xmx2048m -Xms2048m -Xss256k -Xmn1024m -jar $1 &
|
||
|
|
||
|
echo $! > tpid
|
||
|
|
||
|
echo Start Success!
|