码迷,mamicode.com
首页 > 系统相关 > 详细

linux命令-awk

时间:2015-06-23 23:11:44      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:awk   liunx   begin   end   shell   

熟悉awk和print语法

fuhui@ubuntu:~$ ls -lh | awk ‘{print $5 }‘

BEGIN和END被包裹在一个单引号内

fuhui@ubuntu:~$ ls -lh | awk ‘BEGIN { count=0; print "start:" count}‘ ‘END { print "total:" , count}‘
start:0
fuhui@ubuntu:~$ ls -lh | awk ‘BEGIN { count=0; print "start:" count} END { print "total:" , count}‘
start:0
total: 0

在BEGIN和END之间插入语句

fuhui@ubuntu:~$ ls -lh | awk ‘BEGIN { count=0; print "start:" count} {count=count+$5; print count} END { print "total:" , count}‘

逻辑段之间使用分号相隔。END和BEGIN后紧跟{}比较美观

awk -F ‘:‘ ‘BEGIN{ count=0 } { name[count]=$1; count=count+1 } END{ for(i=0;i<NR;i++) print i name[i]}‘ /etc/passwd

linux命令-awk

标签:awk   liunx   begin   end   shell   

原文地址:http://blog.csdn.net/whynottrythis/article/details/46611385

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