From acf8049cbdf09949bb712e00fffd3da0b2e69fc2 Mon Sep 17 00:00:00 2001 From: jihye Date: Thu, 16 Mar 2017 16:55:16 +0900 Subject: [PATCH] sdb shell: replace (") charater to (') - ! is history expansion in bash -- use single quotes (') -- backslash(\) before the ! character -- turn off history expansion (set +H) Change-Id: I24158dac50d1b83853fbcbfdf9c307691b79ae7f Signed-off-by: jihye --- tizen/src/scripts/sdbscript | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tizen/src/scripts/sdbscript b/tizen/src/scripts/sdbscript index c6629fb..2ecb7cf 100755 --- a/tizen/src/scripts/sdbscript +++ b/tizen/src/scripts/sdbscript @@ -9,7 +9,7 @@ TITLE=$2 osascript > /dev/null << END tell application "Terminal" activate -do script "\"$1\" -s $TITLE shell" +do script "'$1' -s $TITLE shell" set custom title of first window to "$TITLE" end tell END -- 2.7.4