diff options
author | jihye <jihye424.kim@samsung.com> | 2017-03-16 16:55:16 +0900 |
---|---|---|
committer | SeokYeon Hwang <syeon.hwang@samsung.com> | 2017-03-21 16:42:18 +0900 |
commit | acf8049cbdf09949bb712e00fffd3da0b2e69fc2 (patch) | |
tree | 166be0d25b1ca5476f30c8c7ff97992b56aced4e | |
parent | 668f3195125d6efa1ea44ff8383c4de08aceed2f (diff) | |
download | qemu-acf8049cbdf09949bb712e00fffd3da0b2e69fc2.tar.gz qemu-acf8049cbdf09949bb712e00fffd3da0b2e69fc2.tar.bz2 qemu-acf8049cbdf09949bb712e00fffd3da0b2e69fc2.zip |
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 <jihye424.kim@samsung.com>
-rwxr-xr-x | tizen/src/scripts/sdbscript | 2 |
1 files changed, 1 insertions, 1 deletions
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 |