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

awk用法

时间:2015-07-21 23:41:18      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:

grep:文本过滤器,
grep "pattern" input_file ....

sed: 流编辑器;
sed "command/PATTERD/"

awk:报告生成器。能够将输入的信息格式化之后显示;包括nawk版本,gawk版本

用法:

  awk [option] ‘script‘ file1 file2, ...
  awk [option] ‘PATTERN {action}‘ file1, file2. ...
    print, printf

 1 root@ubuntu-ceph-07:~# echo  "this is a test" >>test.txt
 2 root@ubuntu-ceph-07:~# awk {print $0} test.txt
 3 this is a test
 4 root@ubuntu-ceph-07:~# awk {print $1} test.txt
 5 this
 6 root@ubuntu-ceph-07:~# awk {print $2} test.txt
 7 is
 8 root@ubuntu-ceph-07:~# awk {print $1$2} test.txt
 9 thisis
10 root@ubuntu-ceph-07:~# awk BEGIN{OFS="#"}{print $1,$2} test.txt
11 this#is
12 root@ubuntu-ceph-07:~# awk {print $1,$2} test.txt
13 this is
14 root@ubuntu-ceph-07:~# awk BEGIN{OFS=":"}{print $1, $2, $3, $4} test.txt
15 this:is:a:test
16 root@ubuntu-ceph-07:~# awk BEGIN{OFS=":"}{print $1, $2, "AAAAAAA",$3, $4} test.txt
17 this:is:AAAAAAA:a:test

地址:http://edu.51cto.com/lesson/id-17373.html

awk用法

标签:

原文地址:http://www.cnblogs.com/chris-cp/p/4665795.html

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