awk si colonne supérieure à

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