summaryrefslogtreecommitdiff
path: root/bips
diff options
context:
space:
mode:
Diffstat (limited to 'bips')
-rwxr-xr-xbips13
1 files changed, 13 insertions, 0 deletions
diff --git a/bips b/bips
new file mode 100755
index 0000000..7df76cd
--- /dev/null
+++ b/bips
@@ -0,0 +1,13 @@
+#!/usr/bin/env bash
+networth=$(hledger bal ^as ^li --value=now,USD --output-format=csv \
+ | tail -n 1 \
+ | tr -d [totalUSD,\"]
+)
+bp=$(bc -l <<< "$networth * 0.0001")
+if [[ $1 == "--from" ]]
+then
+ printf "%0.f USD" $(bc -l <<< "$bp * $2")
+else
+ printf "%.0f bips" $(bc -l <<< "$1/$bp")
+fi
+