I have few lines that each of them are colon separated values,
abc:def:3
Now I could do the reformat with printf plus IFS variable,
while read line; do IFS=":" printf "%-20s %-16s %5d\n" ${line[0]} ${line[1]} ${line[2]}; done < XX
but is it possible to do it within VIM?
