aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2024-01-17 23:22:22 +0100
committerJohannes Stoelp <johannes.stoelp@gmail.com>2024-01-17 23:22:22 +0100
commit6ab4d0859f32d96af2b39a95d943ffeab0d4d713 (patch)
tree5ce9030556dfa6124e94209cb0dbf1b07e3d8eb1 /src
parent811addc3919f9b9ec1e838920f1e2d791a1e5595 (diff)
downloadnotes-6ab4d0859f32d96af2b39a95d943ffeab0d4d713.tar.gz
notes-6ab4d0859f32d96af2b39a95d943ffeab0d4d713.zip
column: add example to format data as table
Diffstat (limited to 'src')
-rw-r--r--src/SUMMARY.md1
-rw-r--r--src/tools/README.md1
-rw-r--r--src/tools/column.md10
3 files changed, 12 insertions, 0 deletions
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
+```