On 17 huhti, 20:37, leandroohf <
leandro...@gmail.com> wrote:
> I would like to know if someone is using ledger or its variants on
> smartphones such as iphone, android or n900.
I have an shell alias "le" on my n900 that calls (over ssh) a home-
grown script that appends "ledger entry" results to my ledger file,
then commits and pushes changes to my master git repository after some
confirmations. While I definitely would try out a native build to
avoid the connection dependency, this arrangement has the added
security of not having a local copy of the data at all.
So I can add entry for my lunch by typing e.g. "le restaurantX", using
the current date as the default, and the latest accounts, commodity
and amount for payee "restaurantX" as provided by "ledger entry" (I
use version 2.6.3)"
More specifically, in my n900 I have:
alias le='ssh -t me@myserver "source ~/.bash_profile; le $@"'
where the remote "le" does some extra parameter handling and version
control operations and calls "ledger entry".
I hope this helps. Alternatives and other tips are appreciated. Janne