Rewrite of python based money_parser
- https://rustup.rs/
rustup install stablecargo build --release- executable in
target/release/money_parser_rust
NOTE: easybank exports are iso-8859-1 encoded and start with a bom
To convert a easybank csv convert it to utf-8 and remove the bom:
TMPFILE=`mktemp`
iconv "$SOURCEFILE" -f ISO-8859-1 -o "$TMPFILE"
sed -i 's/\xef\xbb\xbf//' $TMPFILE
mv "$TMPFILE" "$SOURCEFILE"NOTE: SGKB exports depend on your UI language, only english exports are supported