免费注册 查看新帖 |

Chinaunix

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

如何按条件从文件中提取内容,然后拼到另一文件中 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-03-20 11:39 |只看该作者 |倒序浏览
本帖最后由 sonorous 于 2012-03-20 11:42 编辑

如何按条件从文件中提取内容,然后拼到另一文件中:

file1内容如下:
INVISIBLE       File System     backup02 (Saveset 14) 10:57 20 Mar 2012
INVISIBLE       File System     backup05 (Saveset 13) 10:57 20 Mar 2012
INVISIBLE       File System     backup03 (Saveset 12) 10:57 20 Mar 2012
INVISIBLE       File System     backup05 (Saveset 11) 10:57 20 Mar 2012
INVISIBLE       File System     backup04 (Saveset 10) 10:57 20 Mar 2012

file2内容如下:
35   ------------Workstation INVISIBLE  Report
N/A---------
36   ------------Workstation INVISIBLE  Report
N/A---------
37   ------------Workstation INVISIBLE  Report
N/A---------
38   ------------Disk StorageINVISIBLE  Report
N/A---------
39   None        backup01    INVISIBLE  Backup
Include: INVISIBLE->File System->Fixed Drives->C:\->debug.log
Include: INVISIBLE->File System->Fixed Drives->C:\->CONFIG.SYS
Include: INVISIBLE->File System->Fixed Drives->C:\->AUTOEXEC.BAT
Include: INVISIBLE->File System->Fixed Drives->C:\->Kugou
Include: INVISIBLE->File System->Fixed Drives->C:\->IDE
---------
40   None        backup02    INVISIBLE  Backup
Include: INVISIBLE->File System->Fixed Drives->C:\->CONFIG.SYS
Include: INVISIBLE->File System->Fixed Drives->C:\->AUTOEXEC.BAT
Include: INVISIBLE->File System->Fixed Drives->C:\->Kugou
Include: INVISIBLE->File System->Fixed Drives->C:\->IDE
20 yrs   
41   rst-backup01rst-backup01INVISIBLE  Restore
Include: INVISIBLE->File System->backup01 (Saveset 6) 20:42 19 Mar 2012->C:\
---------
42   rst-backup02rst-backup02INVISIBLE  Restore
Include: INVISIBLE->File System->backup02 (Saveset 5) 20:42 19 Mar 2012->C:\

提取file2中的Include中的C:\合并到file1中,在file1中增加一列,最终file1的内容显示如下:
INVISIBLE       File System     backup02 (Saveset 14) 10:57 20 Mar 2012 C:\
INVISIBLE       File System     backup05 (Saveset 13) 10:57 20 Mar 2012 D:\
INVISIBLE       File System     backup03 (Saveset 12) 10:57 20 Mar 2012 /home
INVISIBLE       File System     backup05 (Saveset 11) 10:57 20 Mar 2012 E:\
INVISIBLE       File System     backup04 (Saveset 10) 10:57 20 Mar 2012 /usr

筛选条件:
1.file1中的第4列名字与file2中的名字匹配
file1: INVISIBLE       File System     backup02 (Saveset 14) 10:57 20 Mar 2012 C:\
file2: 40   None        backup02    INVISIBLE  Backup

2.file1中的第1旬名字与file2中的名字匹配
file1: INVISIBLE       File System     backup02 (Saveset 14) 10:57 20 Mar 2012 C:\
file2: 40   None       backup02    INVISIBLE  Backup

3.读取file2中的Include内容,取“Fixed Drives“后的第一个值,如”C:\“,"D:\",假如是UNIX,那么应该是“/”,Include可能有多行,行数不固定,如果都是”C:\“开头,只要取一个即可,如果有C:\, D:\,那么各取一

4.合并到file1对应行的最后一列

5.补充一下,刚才忘了一点,只取backup类型的,且保存5year以上的,restore的忽略
40   None        backup02    INVISIBLE  Backup
Include: INVISIBLE->File System->Fixed Drives->C:\->CONFIG.SYS
Include: INVISIBLE->File System->Fixed Drives->C:\->AUTOEXEC.BAT
Include: INVISIBLE->File System->Fixed Drives->C:\->Kugou
Include: INVISIBLE->File System->Fixed Drives->C:\->IDE
20 yrs   



论坛徽章:
0
2 [报告]
发表于 2012-03-21 09:17 |只看该作者
楼主弄个悬赏,不出两小时肯定有答案

论坛徽章:
71
15-16赛季CBA联赛之同曦
日期:2018-08-23 15:41:42辰龙
日期:2014-08-15 09:07:43狮子座
日期:2014-06-03 13:55:33亥猪
日期:2014-06-02 11:17:08巨蟹座
日期:2014-05-06 10:02:03午马
日期:2014-05-04 08:18:27亥猪
日期:2014-04-29 11:11:32技术图书徽章
日期:2014-04-24 15:51:26技术图书徽章
日期:2014-04-17 11:01:53辰龙
日期:2014-04-15 12:45:46亥猪
日期:2014-04-11 09:06:23射手座
日期:2014-04-01 15:28:10
3 [报告]
发表于 2012-03-21 09:23 |只看该作者
看不下去,

论坛徽章:
0
4 [报告]
发表于 2012-03-21 09:26 |只看该作者
复杂。。。。等高人吧

论坛徽章:
2
射手座
日期:2014-10-10 15:59:4715-16赛季CBA联赛之上海
日期:2016-03-03 10:27:14
5 [报告]
发表于 2012-03-21 10:16 |只看该作者
本帖最后由 yinyuemi 于 2012-03-21 10:16 编辑

没(法)测试
  1. awk 'NR==FNR{a[$1" "$3]=$0;next}$4" "$3 in a{t=1;s=$4" "$3}t&&/^[0-9]/{t=0}t&&/include/{b[gensub(/.*Drives->([^-]+)-.*/,"\\1",1,$0)]}/yrs/{for(i in b)t=t"\t"i;if($1>5)print a[s] i;delete b}' file1 file2
复制代码

论坛徽章:
0
6 [报告]
发表于 2012-03-21 10:29 |只看该作者
本帖最后由 jiejie455 于 2012-03-21 10:55 编辑
  1. awk 'NR==FNR{if($0~/Backup$/){flag=1;name=$3};if(flag==1){gsub("->"," ");if($7){a[name]=$7};if($0~/yrs/ || $0 ~ /^-\+$/){age[name]=$1;flag=0}}};NR>FNR{if(a[$4]){if(age[$4]>5){print $0,a[$4]}}}' file2 file1
复制代码
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP