====== BASH - Files - Display a specific field in a file if it starts with a number ====== If the fourth field starts with a number then display that fourth field. awk '$4 ~ /^[0-9]/ { print $4 }' filename