Live Chat!

arrange your text nicely with column

*         2 votos

August 17th, 2006 mysurface Posted in Text Manipulation, column, pipeline | Hits: 3742 |

Try to cat /etc/group, you will find the output text is showing name:x:id: …, which list of groups is separate by :

To separate it nicely by columns, you can do that:

cat /etc/group | column -t -s":"

Leave a Reply