awk, jeśli kolumna jest większa niż

# insert the column condition after the ' and before the {
awk '$11>=1{ print <...> }'		# prints only if 11th col value >= 1
Rich Raccoon