1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-03 22:15:42 +02:00

ptx: add page (#2977)

This commit is contained in:
lbonanomi 2019-05-07 19:32:47 -04:00 committed by Starbeamrainbowlabs
parent 5a1f868aa9
commit 55204d064f

23
pages/linux/ptx.md Normal file
View file

@ -0,0 +1,23 @@
# ptx
> Generate a permuted index of words from one or more text files.
- 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}}`