7 lines
184 B
Text
7 lines
184 B
Text
|
|
#!/bin/sh
|
||
|
|
cd "$(dirname "${BASH_SOURCE[0]}")"
|
||
|
|
LOG=./logs
|
||
|
|
mkdir -p $LOG
|
||
|
|
/home/eclipse/sts-4.30.0.RELEASE/SpringToolSuite4 -data .. \
|
||
|
|
>$LOG/eclipse-sts.log 2>$LOG/eclipse-sts.err.log &
|