mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-21 19:51:09 +00:00
Update cheatsheets
This commit is contained in:
29
linux/ptx
Normal file
29
linux/ptx
Normal file
@@ -0,0 +1,29 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, linux]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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}}`
|
||||
Reference in New Issue
Block a user