1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 15:19:43 +01:00
tldr/pages/linux/ptx.md
Vitor Henrique 55a49c4ba1
pages*: remove "one or more" from description when superfluous (#12121)
* pages*: remove "one or more" from description when superfluous

---------

Co-authored-by: Sebastiaan Speck <12570668+sebastiaanspeck@users.noreply.github.com>
2024-01-25 10:58:11 +05:30

679 B

ptx

Generate a permuted index of words from text files. More information: https://www.gnu.org/software/coreutils/ptx.

  • 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}}