Files
qt-creator/share/qtcreator/runInTerminal.command
Daniel Molkentin 0f20a20b4c Fixes: Implement make install target, Step 1
Details: Moving files so that the local layout corresponds to the layout pushed by make install.
Adjust Make target, modify the resource path of the loader to find the resources in the
right place. All pathes are still looked up relative to binaryPath(), libs are found via
relative rpath.
2009-01-21 08:52:19 +01:00

12 lines
371 B
Bash
Executable File

#!/bin/bash
osascript >/dev/null 2>&1 <<EOF
tell application "Terminal"
do script "$1 $2 +$3 +\"normal $4|\"; exit"
set currentTab to the result
set number of columns of currentTab to $5
set number of rows of currentTab to $6
set position of windows whose tabs contains currentTab to {$7, $8}
activate
end tell
EOF