diff options
-rwxr-xr-x | bips | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -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 + |