summaryrefslogtreecommitdiff
path: root/scripts/report
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/report')
-rwxr-xr-xscripts/report17
1 files changed, 17 insertions, 0 deletions
diff --git a/scripts/report b/scripts/report
new file mode 100755
index 00000000..aa42982e
--- /dev/null
+++ b/scripts/report
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+dir=$HOME/doc/finance
+
+cd /tmp
+
+ledger -M -G register "$@" > $1
+
+gnuplot <<EOF
+set terminal png
+set output "report.png"
+set xdata time
+set timefmt "%Y/%m/%d"
+plot "$1" using 1:2 with linespoints
+EOF
+
+open report.png