Lang: bash
# format csv into table
column -s, -t < DebugLogs_2023-01-17-182808.csv >/tmp/t.csv

# format a block of text as table with '|' as separators
# useful in formatting markdown tables.
column -t -s '|' -o '|'