From c23ee3d35cf7813c241642e160839b6869b86384 Mon Sep 17 00:00:00 2001 From: Peter Barker Date: Mon, 19 Sep 2016 12:55:42 +1000 Subject: [PATCH] Tools: tag run-in-terminal-window output with RiTW: --- Tools/autotest/run_in_terminal_window.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Tools/autotest/run_in_terminal_window.sh b/Tools/autotest/run_in_terminal_window.sh index 054edc57d1..1d7a008aed 100755 --- a/Tools/autotest/run_in_terminal_window.sh +++ b/Tools/autotest/run_in_terminal_window.sh @@ -5,7 +5,7 @@ # Sigh: theres no common way of handling command line args :-( name="$1" shift -echo "Starting $name : $*" +echo "RiTW: Starting $name : $*" # default to xterm as it has the most consistent options and can start minimised if [ -n "$DISPLAY" -a -n "$(which osascript)" ]; then osascript -e 'tell application "Terminal" to do script "'"$* "'"' @@ -20,7 +20,7 @@ elif [ -n "$STY" ]; then screen -X screen -t "$name" $* else filename="/tmp/$name.log" - echo "Window access not found, logging to $filename" + echo "RiTW: Window access not found, logging to $filename" cmd="$1" shift # the following "true" is to avoid bash optimising the following call