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

shell脚本之awk基本用法

时间:2015-04-01 01:56:34      阅读:199      评论:0      收藏:0      [点我收藏+]

标签:


脚本文件:

root@linux:/study/shell# cat awk_test.sh 
#!/bin/sh

awk_test_fun()
{
	echo "\$0:"
	echo $0
	echo "\$1:"
	echo $1
	echo "\$2:"
	echo $2
	echo "\$3:"
	echo $3	
	echo "awk_test.txt content:"
	cat awk_test.txt
	echo "result of:'akw -F\" \" \'/^aaa/{print \$1,\$2,\$3}\' awk_test.txt"
	awk -F" " '/^aaa/{print $1,$2,$3}'  awk_test.txt
}

awk_test_fun hello world good
root@linux:/study/shell# 


测试文件awk_test.txt:

root@linux:/study/shell# cat awk_test.txt 
aaa bbb ccc
ddd eee fff
111 222 333


执行结果:

root@linux:/study/shell# ./awk_test.sh
$0:
./awk_test.sh
$1:
hello
$2:
world
$3:
good
awk_test.txt content:
aaa bbb ccc
ddd eee fff
111 222 333
result of:‘akw -F" " \‘/^aaa/{print $1,$2,$3}\‘ awk_test.txt
aaa bbb ccc
root@linux:/study/shell# 


shell脚本之awk基本用法

标签:

原文地址:http://blog.csdn.net/xiangpingli/article/details/44791547

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