mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-25 02:52:13 +08:00
10 lines
226 B
Bash
10 lines
226 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
FC_PATH=/usr/share/java/freecol
|
||
|
LOG_PATH=/tmp/freecol
|
||
|
|
||
|
[ ! -d "$LOG_PATH" ] && install -dm755 $LOG_PATH
|
||
|
cd $LOG_PATH
|
||
|
java -Xmx256M -jar $FC_PATH/FreeCol.jar "$@" --freecol-data $FC_PATH/data \
|
||
|
&> ./messages.log
|