diff options
Diffstat (limited to 'hledger-networth')
-rwxr-xr-x | hledger-networth | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/hledger-networth b/hledger-networth index 67c8aa8..3eabcc2 100755 --- a/hledger-networth +++ b/hledger-networth @@ -1,4 +1,7 @@ #!/usr/bin/env bash # # pipe to tplot for a quick plot -hledger reg ^as ^li -V | awk -F'[[:space:]][[:space:]]+' '{print $4}' | cut -d' ' -f1 | tr -d ',' +hledger reg ^as ^li -V -XUSD \ + | awk -F'[[:space:]][[:space:]]+' '{print $4}' \ + | cut -d' ' -f1 \ + | tr -d ',' |