Chinaunix首页 | 论坛 | 博客
  • 博客访问: 57287
  • 博文数量: 33
  • 博客积分: 1660
  • 博客等级: 上尉
  • 技术积分: 325
  • 用 户 组: 普通用户
  • 注册时间: 2010-03-31 09:44
文章分类
文章存档

2011年(10)

2010年(23)

我的朋友
最近访客

分类:

2010-12-05 09:45:10

此文章为转载!因没记住地址 对原著表示感谢

按关键子分文件   1 为关键字文件  2为数据文件
知识点
1. shell 向awk 传递参数  -v  filename=$i
2. awk 匹配变量  /'$i'/
3. awk 写文件  print $0 >  filename

[root@test shell]# cat 1
aa
bb
[root@test shell]# cat 2
aacc
bbdd
aaee
bbff
aawww
cc
11
22
33
[root@test shell]# cat test

for  i in  `cat 1`
do
awk  -v filename=$i '{if($1 ~/'$i'/){print $0 > filename}}' 2
done
[root@test shell]# sh test
[root@test shell]# ls
1  2  3  4  5  6  7  8  aa  bb  difip  echo  ip  spawn.sh  test  txt2  while
[root@test shell]# cat aa
aacc
aaee
aawww
[root@test shell]# cat bb
bbdd
bbff
阅读(1916) | 评论(1) | 转发(0) |
给主人留下些什么吧!~~

chinaunix网友2010-12-07 09:59:33

很好的, 收藏了 推荐一个博客,提供很多免费软件编程电子书下载: http://free-ebooks.appspot.com