在awk命令中使用shell脚本参数

时间:2015-03-03 20:49:28

标签: bash shell unix

如何在awk命令中使用命令行参数?参数在变量$ 2中:

#!/bin/bash

# Get lines from file
grep -i "" $1|    

# Print out lines where first column element is greater than $2
awk '{
    if($1 > "'$2'")
        print $0;
}'

如果if语句不应该是真的,例如3> 20所以我认为我错误地引用了它。

0 个答案:

没有答案