I\'m trying to remove the first two columns (of which I\'m not interested in) from a DbgView log file. I can\'t seem to find an example that prints from column 3 onwards unt
In AWK columns are called fields, hence NF is the key
all rows:
awk -F '' '{print $(NF-2)}'
first row only:
awk -F '' 'NR<=1{print $(NF-2)}'