Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/justinvdm/fish
a cli thing for sorting out personal finance
https://github.com/justinvdm/fish
Last synced: 10 days ago
JSON representation
a cli thing for sorting out personal finance
- Host: GitHub
- URL: https://github.com/justinvdm/fish
- Owner: justinvdm
- License: mit
- Created: 2015-01-11T16:32:17.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2022-04-24T19:39:20.000Z (over 2 years ago)
- Last Synced: 2024-10-05T14:46:23.283Z (about 1 month ago)
- Language: JavaScript
- Homepage:
- Size: 1.41 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 9
-
Metadata Files:
- Readme: readme.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# fish
a cli thing for sorting out personal finance
## install
```
$ npm install -g fish-js
```## usage
Add a `.fish.yaml` file to your `$HOME` directory (see
[`.fish.example.yaml`](https://github.com/justinvdm/fish/blob/master/.fish.example.yaml)
for an example).Then run `fish` on a csv file:
```
$ fish data.csv┌───────┬────────┬───────┬─────────┐
│ tag │ credit │ debit │ balance │
├───────┼────────┼───────┼─────────┤
│ a │ 3 │ -23 │ -20 │
├───────┼────────┼───────┼─────────┤
│ b │ 20 │ 0 │ 20 │
├───────┼────────┼───────┼─────────┤
│ total │ 23 │ -23 │ 0 │
└───────┴────────┴───────┴─────────┘
```