diff --git a/bin/README.md b/bin/README.md index d75448a7c..de2e079cd 100644 --- a/bin/README.md +++ b/bin/README.md @@ -29,6 +29,12 @@ hledger comes with many built-in commands, and you may want to get familiar with These scripts don't use hledger directly, but are complementary and might be useful to hledger users. ([plaintextaccounting.org](https://plaintextaccounting.org) has a longer list of PTA tools.) +### hledger-pricehist + +[`hledger-pricehist`](https://github.com/simonmichael/hledger/blob/master/bin/hledger-pricehist) +is just an alias for the market price downloader [pricehist](https://pypi.org/project/pricehist), +so that it shows up in the hledger commands list. + ### paypaljson [`paypaljson`](https://github.com/simonmichael/hledger/blob/master/bin/paypaljson) diff --git a/bin/hledger-pricehist b/bin/hledger-pricehist new file mode 100755 index 000000000..dcb68471a --- /dev/null +++ b/bin/hledger-pricehist @@ -0,0 +1,5 @@ +#!/usr/bin/env sh +# A hledger-* alias for pricehist to show it in hledger's commands list. +# https://pypi.org/project/pricehist + +pricehist "$@"