align

Aligns text into columns based on delimiters or whitespace

brewmacoslinux
Try with needOr install directly
Source

About

Text column alignment filter

Commands

align

Examples

Align comma-separated values into columns$ echo -e 'name,age,city\njohn,25,NYC\njane,30,LA' | align -t,
Align lines of text by whitespace$ echo -e 'foo bar baz\nlongname x y' | align
Align using colon as delimiter$ cat /etc/passwd | align -t: