dotfiles/recipes/ledger

20 lines
318 B
Text
Raw Normal View History

2018-02-22 11:27:37 -05:00
#!/bin/bash
2018-04-12 14:07:33 -04:00
# Description: Command-line double-entry accounting
2018-02-27 00:15:14 -05:00
set -e
2018-02-22 11:27:37 -05:00
case $_PLATFORM in
darwin)
_recipe brew
_brew ledger
;;
2021-02-04 19:05:51 -05:00
arch)
_recipe _arch
_pacman ledger
;;
debian)
_recipe _apt
_ppa mbudde/ledger
_apt ledger
;;
esac