I have a tab delimited file, I'd like to re-format it and delete the original, all into one line.
It is a tab-delimited file, I'd like for example to:
remove a given column (i.e., column 3), add another id column in the middle (i.e., btw columns 1 and 2) where each line is an id (e.g. row1 is id1, row2 is id2, etc...), and then add another column at the end with text (i.e., text where each row is hello).
All changes in one line, and finally delete the original file, and the new file with the same as the original.
Example:
fnamein.txt
rogelio\tdelgado\t3453434\tlas encinas\n
mario\tmoreno\t4563432\tcasinos\n
etc...
fname.out
rogelio\tid1\tdelgado\t3453434\tlas encinas\taddress\n
mario\tid2\tmoreno\t4563432\tcasinos\taddress\n
etc...
(as you can see i added id column btw col 1 and 2, and address column (always same word) at the end).
Just wondering is there is an easy way to do that in linux, i am new to the power of linux commands.
Thanks!