- awk, a field doesn't match but it should match
- cat file |awk -v FS="t" '$2 ~ /[0-9]{1}/ {print $0;}'
- cat file |awk -v FS="t" '$2 ~ /.{1}/ {print $0;}' #because the second fields of my file have all second fields as number
- awk '$2 ~ /^[0-9]$/{print}' FS="t" file
- awk --re-interval '$2 ~ /[0-9]{1}/{print}' FS="t" file
- awk '1 <= $2 && $2 <= 9 {print}'