mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-01-26 11:33:59 +00:00
26 lines
941 B
Plaintext
26 lines
941 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# ppmtoarbtxt
|
|
|
|
> Convert a PPM image to an arbitrary text format according to a template.
|
|
> More information: <https://netpbm.sourceforge.net/doc/ppmtoarbtxt.html>.
|
|
|
|
- Convert a PPM image to text as specified by the given template:
|
|
|
|
`ppmtoarbtxt {{path/to/template}} {{path/to/image.ppm}} > {{path/to/output_file.txt}}`
|
|
|
|
- Convert a PPM image to text as specified by the given template, prepend the contents of the specified head template:
|
|
|
|
`ppmtoarbtxt {{path/to/template}} -hd {{path/to/head_template}} {{path/to/image.ppm}} > {{path/to/output_file.txt}}`
|
|
|
|
- Convert a PPM image to text as specified by the given template, append the contents of the specified tail template:
|
|
|
|
`ppmtoarbtxt {{path/to/template}} -hd {{path/to/tail_template}} {{path/to/image.ppm}} > {{path/to/output_file.txt}}`
|
|
|
|
- Display version:
|
|
|
|
`ppmtoarbtxt {{[-v|-version]}}`
|