用shell脚本创建sqlite表并添加sql语句--通用
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了用shell脚本创建sqlite表并添加sql语句--通用相关的知识,希望对你有一定的参考价值。
重要使用的是EOF的功能,亲测和!功能一致;下面是测试代码
#!/bin/bash
val=`ls`
for v in ${val}
do
if [ ${v} == "test.db" ]
then
rm test.db
echo "rm test.db"
fi
done
sqlite test.db << EOF
create table test(name char,sex char);
insert into test values("yang","nan");
select * from test;
.quit
EOF
EOF注入内容EOF结束
以上是关于用shell脚本创建sqlite表并添加sql语句--通用的主要内容,如果未能解决你的问题,请参考以下文章