Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/etheryen/sum-bills
Sums all your bills kept in a file
https://github.com/etheryen/sum-bills
go golang rust rust-lang
Last synced: 20 days ago
JSON representation
Sums all your bills kept in a file
- Host: GitHub
- URL: https://github.com/etheryen/sum-bills
- Owner: Etheryen
- Created: 2023-12-08T23:33:57.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2024-06-13T15:45:20.000Z (6 months ago)
- Last Synced: 2024-06-13T18:37:47.556Z (6 months ago)
- Topics: go, golang, rust, rust-lang
- Language: Go
- Homepage:
- Size: 13.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# sum-bills
Sums all your bills if you keep them in a file with this format:
```
Bills start:
3€ shopping
2.35€ soda
-9.25€ borrowed from mark
```## Usage
### Go
```sh
go run cmd/main.go --header "Bills start:" --file ~/personal/finances/Bills.md
```> Go version also prints out detected currency
### Rust
```sh
cargo run -- "Bills start:" ~/personal/finances/Bills.md
```