mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00
24 lines
444 B
Markdown
24 lines
444 B
Markdown
# tbl
|
|
|
|
> Format tables for `troff`.
|
|
> More information: <https://manned.org/tbl>.
|
|
|
|
- Format tables for `troff` and print it to stdout:
|
|
|
|
`cat {{path/to/file.troff}} | tbl`
|
|
|
|
- Format tables for `troff` in "compatibility mode":
|
|
|
|
`cat {{path/to/file.troff}} | tbl -C`
|
|
|
|
- Format tables for `troff` from a file:
|
|
|
|
`tbl {{path/to/file.troff}}`
|
|
|
|
- Mark the beginning of a table ("Table Start"):
|
|
|
|
`.TS`
|
|
|
|
- Mark the end of the table ("Table End"):
|
|
|
|
`.TE`
|