System Grab Bag

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

ledger

Ledger is a powerful, double-entry accounting system that is accessed from the UNIX command-line. More information: https://www.ledger-cli.org.
  • Print a balance report showing totals:
    ledger balance --file {{path/to/ledger.journal}}
  • List all postings in Expenses ordered by amount:
    ledger register {{expenses}} --sorted {{amount}}
  • Print total Expenses other than Drinks and Food:
    ledger balance {{Expenses}} and not ({{Drinks}} or {{Food}})
  • Print a budget report:
    ledger budget
  • Print summary information about all the postings:
    ledger stats

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.