💾 Archived View for tilde.club › ~filip › tech › script › tsv2txt_table › tsv2txt_table.gmi captured on 2024-07-09 at 01:37:08. Gemini links have been rewritten to link to archived content

View Raw

More Information

⬅️ Previous capture (2022-07-16)

-=-=-=-=-=-=-

tsv2txt_table

A awk/bash script that formats a TSV file into a plaintext table.

Download

tsv2txt_table

Example

TSV file `test.tsv`:

	here^Iare^Isome$
	words^I^Iand^Inumbers$
	^Ilike^I1^Iand^I2^Iand 3$

Output of `./tsv2txt_table test.tsv`:

	+---------------------------------------------+
	| here  | are  | some |         |   |     |   |
	| words |      | and  | numbers |   |     |   |
	|       | like | 1    | and     | 2 | and | 3 |
	+---------------------------------------------+