1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/linux/ptx.md
K.B.Dharun Krishna 898f711019
pages/*: update GNU coreutils links, sync translation pages (#15543)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-01-18 18:45:33 +05:30

24 lines
712 B
Markdown

# ptx
> Generate a permuted index of words from text files.
> More information: <https://www.gnu.org/software/coreutils/manual/html_node/ptx-invocation.html>.
- Generate a permuted index where the first field of each line is an index reference:
`ptx --references {{path/to/file}}`
- Generate a permuted index with automatically generated index references:
`ptx --auto-reference {{path/to/file}}`
- Generate a permuted index with a fixed width:
`ptx --width={{width_in_columns}} {{path/to/file}}`
- Generate a permuted index with a list of filtered words:
`ptx --only-file={{path/to/filter}} {{path/to/file}}`
- Generate a permuted index with SYSV-style behaviors:
`ptx --traditional {{path/to/file}}`