From 6ab4d0859f32d96af2b39a95d943ffeab0d4d713 Mon Sep 17 00:00:00 2001 From: Johannes Stoelp Date: Wed, 17 Jan 2024 23:22:22 +0100 Subject: column: add example to format data as table --- src/SUMMARY.md | 1 + src/tools/README.md | 1 + src/tools/column.md | 10 ++++++++++ 3 files changed, 12 insertions(+) create mode 100644 src/tools/column.md (limited to 'src') diff --git a/src/SUMMARY.md b/src/SUMMARY.md index a6e1a07..7a2155e 100644 --- a/src/SUMMARY.md +++ b/src/SUMMARY.md @@ -18,6 +18,7 @@ - [pacman](./tools/pacman.md) - [dot](./tools/dot.md) - [ffmpeg](./tools/ffmpeg.md) + - [column](./tools/column.md) - [Resource analysis & monitor](./monitor/README.md) - [lsof](./monitor/lsof.md) diff --git a/src/tools/README.md b/src/tools/README.md index fd8ee7e..0b1666c 100644 --- a/src/tools/README.md +++ b/src/tools/README.md @@ -15,3 +15,4 @@ - [pacman](./pacman.md) - [dot](./dot.md) - [ffmpeg](./ffmpeg.md) +- [column](./column.md) diff --git a/src/tools/column.md b/src/tools/column.md new file mode 100644 index 0000000..4a3b2c4 --- /dev/null +++ b/src/tools/column.md @@ -0,0 +1,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 +``` -- cgit v1.2.3