12 lines
151 B
Bash
12 lines
151 B
Bash
|
#!/bin/sh -e
|
||
|
|
||
|
cd "`dirname \"$0\"`"
|
||
|
|
||
|
osascript <<END
|
||
|
|
||
|
tell application "Terminal"
|
||
|
do script "cd \"`pwd`\";./starbound_server $@;exit"
|
||
|
end tell
|
||
|
|
||
|
END
|