get feed

KDE3.5 and other stuff

Computer related problems and solutions, tips, tricks, hacks and so on

:: How to delete the last column

Recently I needed to find a way to remove the last column from a text file.The file contains, let's say, something like

aa bb cde
d e f gh
and I needed the new file to look like
aa bb
d e f
A google search only led me to methods of deleting the last column in a file with fixed number of columns, which doesn't apply to my situation, where the number of columns vary from a line to another. So I suppose this is worthposting here.

The command needed is simply

awk '{$NF =""; print }' oldfile > newfile
posted by kde35 in awk, format, text on 2014-04-11 10:46