提交 fb21ced7 编写于 作者: B blueswir1

Fix hxtool eating backslash sequences

git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@6945 c046a42c-6fe2-441c-8c8c-71466251a162
上级 4c978075
......@@ -3,14 +3,14 @@
hxtoh()
{
flag=1
while read str; do
while read -r str; do
case $str in
HXCOMM*)
;;
STEXI*|ETEXI*) flag=$(($flag^1))
;;
*)
test $flag -eq 1 && echo $str
test $flag -eq 1 && echo "$str"
;;
esac
done
......@@ -19,7 +19,7 @@ hxtoh()
hxtotexi()
{
flag=0
while read str; do
while read -r str; do
case "$str" in
HXCOMM*)
;;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册