System Grab Bag

View all TLDR pages from common (or from all pages)

pygmentize

Python-based syntax highlighter. More information: https://pygments.org/docs/cmdline/.
  • Highlight file syntax and print to stdout (language is inferred from the file extension):
    pygmentize {{file.py}}
  • Explicitly set the language for syntax highlighting:
    pygmentize -l {{javascript}} {{input_file}}
  • List available lexers (processors for input languages):
    pygmentize -L lexers
  • Save output to a file in HTML format:
    pygmentize -f html -o {{output_file.html}} {{input_file.py}}
  • List available output formats:
    pygmentize -L formatters
  • Output an HTML file, with additional formatter options (full page, with line numbers):
    pygmentize -f html -O "full,linenos=True" -o {{output_file.html}} {{input_file}}

License and Disclaimer

The content on this page is copyright © 2014—present the tldr-pages team and contributors.
This page is used with permission under Creative Commons Attribution 4.0 International License.

While we do attempt to make sure content is accurate, there isn't a warranty of any kind.