免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1211 | 回复: 0
打印 上一主题 下一主题

linux下自动向MySQL中录入数据的脚本 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-12-29 12:13 |只看该作者 |倒序浏览

#!/bin/sh
echo "  #############################################################################################"
echo "  ##            The Shell Script for Postfix Cyrus-sasl Courier-authlib Mysql                ##"
echo "  ##              ##"
echo "  ##                        Modified: Hu Changwen                                            ##"
echo "  ##                        MSN     :
[color="#0000ff"]hucw_rhce@hotmail.com
                                  ##"
echo "  ##                        Version : 1.0                                                    ##"
echo "  ##                        Date    : 2008-09-26                                             ##"
echo "  #############################################################################################"
echo ""
#define the strcture of table
TABLE="(username char(50) not
null,password char(20) not null,uid char(10) not null,gid char(10) not
null,maildir char(100) not null,domain char(20) not null,active char(1)
default '1');"
#create database and table
#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
for type in database table;do
printf "Please input the $type name you would like to create:[postfix]"
while read data;do
      if [ ! -z ${data} ]; then
         if [ "$type" = "database" ];then
            database=$data
         elif [ "$type" = "table" ];then
            table=$data
         fi
         break
      fi
      printf "Please input the database name you would like to create:[postfix]"
done
done
                        
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#input the data per user
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
for ((i=1;;i++));do
    printf "Do you want to input the data per user:[yes,no]"
    while read yes_no;do
          if [ "$yes_no" != "yes" ];then break 2;fi
          echo "Please input the data of NO.$i user:"
          for col in username password uid gid maildir domain active;do
              printf "$col of NO.$i :" && read ${col}[${i}]
          done
   break
   done
done
#output the data you input
#+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo ""
echo "++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++"
echo "Please make sure the data you input:"
echo "Database: $database"
echo "Table   : $table"
echo ""
echo "Show the recodes you input:"
echo "username  password uid gid maildir    domain   active"
for ((n=1;n
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
#execute the sql to input data to mysql
#++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
echo ""
echo "Executing the SQL to input data to mysql......"
      printf "Creating database $database......                  " && \
      mysql -u root -h
[color="#0000ff"]www.hucw.com
--password=redhat -e "create database if not exists ${database}" && \
      echo -e "\033[32mOK\033[m"
      printf "Creating table $table......                      " && \
      mysql -u root -h
[color="#0000ff"]www.hucw.com
--password=redhat $database -e "create table if not exists ${table}$TABLE" && \
      echo -e "\033[32mOK\033[m"
#insert recode to mysql
for ((n=1;n
#show all the recode
echo ""
echo "Show all the recods in the mysql:"
mysql -u root -h
[color="#0000ff"]www.hucw.com
--password=redhat $database -e "select * from $table"


[color="#000099"]原文地址
http://blog.chinaunix.net/u3/93926/showart_1873623.html
               
               
               

本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u3/94754/showart_2134195.html
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP