标签: 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所以我认为我错误地引用了它。