dotfiles/recipes/ledger

16 lines
247 B
Text
Raw Normal View History

2018-02-22 16:27:37 +00:00
#!/bin/bash
2018-04-12 18:07:33 +00:00
# Description: Command-line double-entry accounting
2018-02-27 05:15:14 +00:00
set -e
2018-02-22 16:27:37 +00:00
case $_PLATFORM in
darwin)
_recipe brew
_brew ledger
;;
*)
_recipe _apt
_ppa mbudde/ledger
_apt ledger
;;
esac