Forrest logo
tool overview
On this page you find all important commands for the CLI tool libreoffice. If the command you are looking for is missing please ask our AI.

libreoffice

LibreOffice is a popular and open-source command-line tool that offers a suite of office productivity applications. It provides several applications such as Writer (word processing), Calc (spreadsheets), Impress (presentations), Base (database management), and Draw (vector graphics). As a command-line tool, LibreOffice allows users to perform document-related tasks without accessing the graphical interface.

Using LibreOffice from the command line, users can convert files between different formats, automate document creation, perform batch operations, and generate reports. It supports a wide range of file formats, including Microsoft Office formats, PDF, HTML, and more.

By leveraging the command-line interface, LibreOffice can be integrated into scripts and workflows, allowing for efficient automation of office-related tasks. It provides extensive documentation and comprehensive APIs to help developers utilize its functionalities effectively.

LibreOffice is cross-platform, making it available for Windows, macOS, and various Linux distributions. Its flexible nature and extensive feature set make it a popular choice for individuals, organizations, and developers seeking a command-line tool for office-related operations.

List of commands for libreoffice:

  • libreoffice:tldr:8b93d libreoffice: Print files to a specific printer.
    $ libreoffice --pt ${printer_name} ${filename1} ${filename2}
    try on your machine
    explain this command
  • libreoffice:tldr:97377 libreoffice: Open a space-separated list of files in read-only mode.
    $ libreoffice --view ${filename1} ${filename2}
    try on your machine
    explain this command
  • libreoffice:tldr:dfcd0 libreoffice: Display the content of specific files.
    $ libreoffice --cat ${filename1} ${filename2}
    try on your machine
    explain this command
  • libreoffice:tldr:f848f libreoffice: Convert all `.doc` files in current directory to PDF.
    $ libreoffice --convert-to ${pdf} ${*-doc}
    try on your machine
    explain this command
tool overview