If this is your first visit, be sure to check out the FAQ by clicking the link above.
You may have to register before you can post: click the register link above to proceed.
To start viewing messages, select the forum that you want to visit from the selection below.
2800;238929;LF;Test Company
217800;93459;LF;American Company
I ran the command
awk -F; '{print $2";"$1";"$4";"$3}'
This command however formats my data as such..
2800;238929;LF ;Test Company
217800;93459;LF ;American Company
I believe the reason this is happening is because there are some blank spaces after "LF". Is there anyway to get it to format the way I want it without going through the whole file and deleting all the blank spaces.