From: jihye Date: Thu, 16 Mar 2017 07:55:16 +0000 (+0900) Subject: sdb shell: replace (") charater to (') X-Git-Tag: Tizen_Studio_1.3_Release_p2.3.2~9^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=acf8049cbdf09949bb712e00fffd3da0b2e69fc2;p=sdk%2Femulator%2Fqemu.git 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 --- diff --git a/tizen/src/scripts/sdbscript b/tizen/src/scripts/sdbscript index c6629fb958..2ecb7cf516 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