shell脚本如何将文件多行根据分号拼接为一行

如图,我想达成如图的转换,应该怎么写脚本... 如图,我想达成如图的转换,应该怎么写脚本 展开
 我来答
liyongyi999
2019-01-09 · TA获得超过136个赞
知道小有建树答主
回答量:225
采纳率:88%
帮助的人:24.1万
展开全部
Hello,这个题目如果是linux 必须要用linux三剑客了.

[root@g01 files]# cat sql.txt 
create table test.two
(
pn varchar(10) not null
);
create table test.aa
(
pn varchar(10) not null
);
create table test.bb
(
pn varchar(10) not null
);
create table test.ccc
(
pn varchar(10) not null
);

方法1
[root@g01 files]# awk  '{if(/\)\;/) print  ;else printf $0"\t"} '   sql.txt 
create table test.two(pn varchar(10) not null);
create table test.aa(pn varchar(10) not null);
create table test.bb(pn varchar(10) not null);
create table test.ccc(pn varchar(10) not null);

方法2
[root@oldboyedu-show01 /server/files]# awk -vRS=");" -F"\n" '{print $1,$2,$3,$4,RT}' sql.txt 
create table test.two ( pn varchar(10) not null  );
 create table test.aa ( pn varchar(10) not null );
 create table test.bb ( pn varchar(10) not null );
 create table test.ccc ( pn varchar(10) not null );
大大虫
高粉答主

2019-01-10 · 醉心答题,欢迎关注
知道大有可为答主
回答量:4.2万
采纳率:76%
帮助的人:1.4亿
展开全部
cat test.txt | xargs | sed 's/; /;\n/g'
追问
老哥,但是这样处理完后原本的换行符好像还在,这个能解决么?
追答
没有换行符了啊
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式