This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!bin/bash | |
# Arguments: $1 --> Ledger source file | |
# $2 --> Year Period, eg '2013' | |
# | |
# Example: bash ledger_close_year.sh mybooks.ledger 2013 | |
# Equity report from ledger | |
ledger -f $1 equity ^Income ^Expenses -p $2 > pl.tmp |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# coding: utf-8 | |
""" | |
hledger-rep2mkd | |
version: 0.1 | |
MIT LICENSE ( https://https://mit-license.org/ ) | |
2021 (c) Tony M. Jenkins | |
Parses csv output from is / bs / bse / cf / reg / areg hledger reports to markdown file. |