Tagged Questions
0
votes
1answer
115 views
Pretty print in VIM?
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" ...