cheatsheets/ledger-query.md

29 lines
561 B
Markdown
Raw Permalink Normal View History

2014-10-08 04:48:05 +00:00
---
title: Ledger queries
2015-12-01 05:41:43 +00:00
category: Ledger
2014-10-08 04:48:05 +00:00
---
### About
- <https://ledger-cli.org/3.0/doc/ledger3.html#Complex-expressions>
2017-08-29 15:43:49 +00:00
### Query characters
2014-10-08 04:48:05 +00:00
2017-08-29 15:43:49 +00:00
| Query | Description |
| --- | --- |
| `@payee` | Payee |
| `%tag` | Tag |
| `=note` | Note |
| `#code` | Code |
| --- | --- |
| `TERM and TERM` | Boolean and |
| `TERM or TERM` | Boolean or |
| `not TERM` | Boolean not |
2014-10-08 04:48:05 +00:00
2017-08-29 15:43:49 +00:00
### Examples
2014-10-08 14:31:17 +00:00
2017-08-29 15:43:49 +00:00
```sh
ledger r @taco
ledger r comment =~ /landline/
```