免费注册 查看新帖 |

Chinaunix

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

[文本处理] (求助)使用shell命令按标识分割文件 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2014-02-07 12:50 |只看该作者 |倒序浏览
一个文件内容如下:
Service "syncdb" has 1 instance(s).
  Instance "syncdb", status READY, has 1 handler(s) for this service...
Service "syncdbXDB" has 2 instance(s).
  Instance "syncdb1", status READY, has 1 handler(s) for this service...
  Instance "syncdb2", status READY, has 1 handler(s) for this service...
Service "syncdb_XPT" has 1 instance(s).
  Instance "syncdb", status READY, has 1 handler(s) for this service...



使用什么shell命令可以将上面的文件分割为以下3个文件:

第一个文件:
Service "syncdb" has 1 instance(s).
  Instance "syncdb", status READY, has 1 handler(s) for this service...
第二个文件:
Service "syncdbXDB" has 2 instance(s).
  Instance "syncdb1", status READY, has 1 handler(s) for this service...
  Instance "syncdb2", status READY, has 1 handler(s) for this service...
第三个文件:
Service "syncdb_XPT" has 1 instance(s).
  Instance "syncdb", status READY, has 1 handler(s) for this service...

也就是按Service开头为分割标识,相邻的两个Service之间的行数是不确定的,可能是1行,也可能是n行。

谢谢!

论坛徽章:
0
2 [报告]
发表于 2014-02-07 13:13 |只看该作者
  1. awk '{if($1 == "Service" && $2 == "\"syncdb\""){n=$4+1;}else{;};if(n>0){print $0;n=n-1}}' data.txt > output
  2. awk '{if($1 == "Service" && $2 == "\"syncdbXDB\""){n=$4+1;}else{;};if(n>0){print $0;n=n-1}}' data.txt > output.XDB
  3. awk '{if($1 == "Service" && $2 == "\"syncdb_XPT\""){n=$4+1;}else{;};if(n>0){print $0;n=n-1}}' data.txt > output._XPT
复制代码
仅供参考。

论坛徽章:
6
摩羯座
日期:2013-12-27 09:45:04技术图书徽章
日期:2014-01-27 12:40:06辰龙
日期:2014-02-28 15:12:52巳蛇
日期:2014-03-21 17:06:27未羊
日期:2014-04-15 20:12:41黑曼巴
日期:2016-08-02 11:00:06
3 [报告]
发表于 2014-02-07 14:01 |只看该作者
回复 1# Pugna_zfr


    awk '/^Service/{file=$2;gsub(/\"/,"",file)}{print $0 > file}' service.txt

论坛徽章:
0
4 [报告]
发表于 2014-02-07 14:12 |只看该作者
回复 2# polyahu


    谢谢!
    我用 awk '{if($1 == "Service" && $2 !~/XDB/ && $2 !~/_XPT/ && $2 !~/PLSExtProc/){n=$4+1;}else{;};if(n>0){print $0;n=n-1}}' inputfile 基本达到要求了,就是有个点遗憾,不能自动按Service名称分割。不过还是很不错了!3Q

论坛徽章:
0
5 [报告]
发表于 2014-02-07 14:16 |只看该作者
回复 3# laliheyi


    试了下,好像有点问题。
    -bash-3.2$ lsnrctl status | awk '/^Service/{file=$2;gsub(/\"/,"",file)}{print $0 > file}'
    awk: (FILENAME=- FNR=1) fatal: expression for `>' redirection has null string value

    -bash-3.2$ awk --version
    GNU Awk 3.1.5

论坛徽章:
0
6 [报告]
发表于 2014-02-07 14:23 |只看该作者
回复 4# Pugna_zfr


    哦,不好意思,我刚才搞错了。我把lsnrctl status的输出内容格式化成1L中的那样是正常的。
    谢谢! :wink:

论坛徽章:
6
摩羯座
日期:2013-12-27 09:45:04技术图书徽章
日期:2014-01-27 12:40:06辰龙
日期:2014-02-28 15:12:52巳蛇
日期:2014-03-21 17:06:27未羊
日期:2014-04-15 20:12:41黑曼巴
日期:2016-08-02 11:00:06
7 [报告]
发表于 2014-02-07 14:24 |只看该作者
回复 5# Pugna_zfr


   {:2_166:}  lsnrctl status 结果前面那部分结果你的需求中没有给出。如果那部分不需要可以如此
awk '/^Service/{file=$2;gsub(/\"/,"",file)}file!=""{print $0 > file}'

论坛徽章:
50
15-16赛季CBA联赛之广夏
日期:2018-11-05 09:42:462015年亚冠纪念徽章
日期:2015-07-23 11:58:122015亚冠之广州富力
日期:2015-07-07 08:26:172015亚冠之塔什干棉农
日期:2015-06-29 09:08:072015年亚洲杯之伊朗
日期:2015-03-08 20:51:012015年迎新春徽章
日期:2015-03-04 09:58:11未羊
日期:2014-10-16 22:41:47处女座
日期:2014-10-16 15:33:33酉鸡
日期:2014-03-13 12:54:10巳蛇
日期:2014-03-10 14:39:052015亚冠之德黑兰石油
日期:2015-07-29 12:46:372015亚冠之德黑兰石油
日期:2015-08-07 12:54:11
8 [报告]
发表于 2014-02-07 14:39 |只看该作者
回复 1# Pugna_zfr
  1. $awk '/^Service/{++i}{print >"file"i}' file

  2. $cat file
  3. Service "syncdb" has 1 instance(s).
  4.   Instance "syncdb", status READY, has 1 handler(s) for this service...
  5. Service "syncdbXDB" has 2 instance(s).
  6.   Instance "syncdb1", status READY, has 1 handler(s) for this service...
  7.   Instance "syncdb2", status READY, has 1 handler(s) for this service...
  8. Service "syncdb_XPT" has 1 instance(s).
  9.   Instance "syncdb", status READY, has 1 handler(s) for this service...

  10. $cat file1
  11. Service "syncdb" has 1 instance(s).
  12.   Instance "syncdb", status READY, has 1 handler(s) for this service...
  13. $cat file2
  14. Service "syncdbXDB" has 2 instance(s).
  15.   Instance "syncdb1", status READY, has 1 handler(s) for this service...
  16.   Instance "syncdb2", status READY, has 1 handler(s) for this service...
  17. $cat file3
  18. Service "syncdb_XPT" has 1 instance(s).
  19.   Instance "syncdb", status READY, has 1 handler(s) for this service...
复制代码

论坛徽章:
0
9 [报告]
发表于 2014-02-07 14:45 |只看该作者
回复 7# laliheyi


    嗯。

命令中的 print $0 > file 看不太明白。file是前面的service名称,$0是匹配到以Service开头的每一行吗?
我改了下这个命令,感觉$0是把每一行都匹配了,不管是否以Service开头。但是,如果$0是每一行的话,直接用 > 到文件,居然没有把原文件的内容(即刚刚输出到文件的上一行内容)覆盖???
a.txt中是格式化好的文本内容。

-bash-3.2$ awk '/^Service/{file=$2;gsub(/\"/,"",file)}{print "test line\n"$0}' a.txt
test line
Service "PLSExtProc" has 1 instance(s).
test line
  Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
test line
Service "syncdb" has 1 instance(s).
test line
  Instance "syncdb", status READY, has 1 handler(s) for this service...
test line
Service "syncdbXDB" has 1 instance(s).
test line
  Instance "syncdb", status READY, has 1 handler(s) for this service...
test line
Service "syncdb_XPT" has 1 instance(s).
test line
  Instance "syncdb", status READY, has 1 handler(s) for this service...

论坛徽章:
0
10 [报告]
发表于 2014-02-07 14:50 |只看该作者
回复 8# WilliBhamlll


    这个 awk '/^Service/{++i}{print >"file"i}' file 是不是匹配以Service开头的内容,如果匹配到就执行{++i}{print >"file"i} ,直到遇到下一个匹配Service开头的行,再执行{++i}{print >"file"i} ,然后一直这么循环下去,直到读取完文件的内容 ??
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP