summaryrefslogtreecommitdiff
path: root/scripts/report
diff options
context:
space:
mode:
authorJohn Wiegley <johnw@newartisans.com>2004-07-29 17:25:28 -0400
committerJohn Wiegley <johnw@newartisans.com>2004-07-29 17:25:28 -0400
commitabae9138e9b7746a23d66d56673e10343a9cec11 (patch)
tree69d2275d589618f266ad7ed5a5d182171fe49d28 /scripts/report
parent358e3329b3b981bcd7ddf8a03192dec9378fbcab (diff)
downloadfork-ledger-abae9138e9b7746a23d66d56673e10343a9cec11.tar.gz
fork-ledger-abae9138e9b7746a23d66d56673e10343a9cec11.tar.bz2
fork-ledger-abae9138e9b7746a23d66d56673e10343a9cec11.zip
added missing files
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..c548792c
--- /dev/null
+++ b/scripts/report
@@ -0,0 +1,17 @@
+#!/bin/sh
+
+args=("$@")
+last=${args[`expr ${#args} - 3`]}
+
+cd /tmp
+ledger "$@" | stripreg > $last
+
+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