sdb shell: replace (") charater to (')
authorjihye <jihye424.kim@samsung.com>
Thu, 16 Mar 2017 07:55:16 +0000 (16:55 +0900)
committerSeokYeon Hwang <syeon.hwang@samsung.com>
Tue, 21 Mar 2017 07:42:18 +0000 (16:42 +0900)
- ! 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 <jihye424.kim@samsung.com>
tizen/src/scripts/sdbscript

index c6629fb..2ecb7cf 100755 (executable)
@@ -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