awk 参数插入到文本中问题
例如有个文本文件如下
cat test:
复制代码
脚本test.sh
cat test.sh
复制代码
通过执行脚本 ./test.sh aa
得到如下结果
2 3 aa
1 5 aa
2 6 aa
其中参数aa是变化的
请问如何修改脚本test.sh
cat test:
- 1 2
- 2 3 4
- 1 5 5
- 2 6 8
cat test.sh
- #!/bin/bash
- cat test|awk '{print $1,$2}'
得到如下结果
2 3 aa
1 5 aa
2 6 aa
其中参数aa是变化的
请问如何修改脚本test.sh
作者: moshangxie 发布时间: 2011-06-16
回复 moshangxie
这样可以么?
复制代码
这样可以么?
- #!/bin/bash
- awk -varg=$1 '{print $1,$2,arg}' test
- 或者
- #!/bin/bash
- awk '{print $1,$2,"'$1'"}' test
作者: lionfun 发布时间: 2011-06-16
- cat test|awk -v y=`echo $1` '{print $1,y,$2}'
得到结果
2 aa 3
1 aa 5
2 aa 6
作者: godule 发布时间: 2011-06-16
多谢
作者: moshangxie 发布时间: 2011-06-16