标签:
脚本文件:
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#
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#
标签:
原文地址:http://blog.csdn.net/xiangpingli/article/details/44791547