awk if column greater than code example
Example: awk if column greater than
# insert the column condition after the ' and before the {
awk '$11>=1{ print <...> }' # prints only if 11th col value >= 1
# insert the column condition after the ' and before the {
awk '$11>=1{ print <...> }' # prints only if 11th col value >= 1