0
votes
1
comments
77,105
views

Using awk to print all columns from the nth to the last

0 votes, 0.00 avg. rating (0% score)
Getting a one-liner awk routine to print the nth field to the last should not be so complicated. For my wish list awk should have a function called ‘fields’ that would perform this tasks. It could have the same syntax as the substr command ie fields(5, 8) which would print fields 5 through 8. Being […]