码迷,mamicode.com
首页 > 数据库 > 详细

用shell脚本创建sqlite表并添加sql语句--通用

时间:2017-03-10 22:20:24      阅读:270      评论:0      收藏:0      [点我收藏+]

标签:通用   shell脚本   one   insert   结束   shell   shel   添加   into   

重要使用的是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语句--通用

标签:通用   shell脚本   one   insert   结束   shell   shel   添加   into   

原文地址:http://www.cnblogs.com/yangzenghui/p/6533186.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!