forked from qt-creator/qt-creator
8 lines
144 B
Plaintext
8 lines
144 B
Plaintext
|
|
#!/bin/bash
|
||
|
|
osascript >/dev/null 2>&1 <<EOF
|
||
|
|
tell application "Terminal"
|
||
|
|
activate
|
||
|
|
do script with command "$@; exit"
|
||
|
|
end tell
|
||
|
|
EOF
|