首页 > 代码库 > 避免shell脚本SQL语句中 *输出时转义

避免shell脚本SQL语句中 *输出时转义

脚本test.sh内容如下,在 /home/myname/下执行该脚本,

家目录下有文件a.txt,test.log,test.sh

#!/bin/bash

sql="select * from emp;"

echo $sql

echo $sql > test.log

执行后结果:

select test.sh a.txt test.log from emp;

如何能让sql中的*不转义?

                                                                                                   

修改为如下:

#!/bin/bash
sql="select * from emp;"

echo "$sql"

echo "$sql" > test.log

再次执行,结果如下

select * from emp;


本文出自 “努力奔向前方” 博客,请务必保留此出处http://liucb.blog.51cto.com/3230681/1903960

避免shell脚本SQL语句中 *输出时转义