My input file has columns which are space evenly like so:
X a b C D
How do I use awk to specify the number of spaces between the columns such that I get something like this:
X a b C D
I know how to count the spaces between the columns using awk, I just don't know how to add those spaces in order to get the layout I want. Any suggestions?