码迷,mamicode.com
首页 > 其他好文 > 详细

文件头尾增加字符串脚本

时间:2017-03-31 09:27:57      阅读:136      评论:0      收藏:0      [点我收藏+]

标签:sed   dos2unix   

   因为业务上需要,需要在一大批导出的手机号上修改成相应的sql语句用于insert某一张表中,当然为了快速处理文件就吧文件转化为列式存于文件phone中,然后通过脚本去修改文件,脚本如下:

#!/bin/bash
#Used to insert a string at the end of the file list
#note:You must configure the yum source
#writer jim
#histor
#2017.3.30
#2017.3.31
########PATH########
file_path=/usr/local/scripts/phone
########PATH########

/bin/rpm -qa|grep dos2unix#用于判断系统下是否有装过dos2unix,用于转化文件的字符集编码和正则字符定位符
if [ $? -ne 0 ];then
    yum -y install dos2unix
fi

/usr/bin/dos2unix $file_path
/bin/sed -i "s/^/insert into phonelist (PHONE) values (\‘/g" $file_path
/bin/sed -i "s/$/‘);/g" $file_path


本文出自 “技术随笔” 博客,谢绝转载!

文件头尾增加字符串脚本

标签:sed   dos2unix   

原文地址:http://jim123.blog.51cto.com/4763600/1911947

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