aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/column.md
blob: 4a3b2c45d534d67417467616022ac670f7b47e45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
# column(1)

## Examples
```sh
# Show as table (aligned columns), with comma as delimiter from stdin.
echo -e 'a,b,c\n111,22222,33' | column -t -s ','

# Show file as table.
column -t -s ',' test.csv
```