I need to set the delimiter from a : to three blanks.
So far my code is as follows:
cut -d f1,6,7 test | tr : ' '
Dont mind anything before the pipe, that is just for formatting of the file "test". It will replace the delimiter with one blank, but not three, how do i accomplish this?