extrack is a CLI written in Rust to easily parse and summarize bank transaction excel sheets. It can be used to find information related to your spending and earnings in total and by category, straight from your command line without having to send any data to a server.
Installation requires Rust with Cargo installed.
git clone https://github.com/vifraa/extrack.git
cd extrack
cargo build --release
The most basic usage is by entering the path to the excel sheet as an input argument. For example:
extrack <path_to_input_file>
This will output the result straight to the command line. To save the result in a file you can either direct the result from the above command or give a path to where the output will be saved.
# Redirect the output to a file
extrack <path_to_input_file> > result.csv
# Use output argument
extrack <path_to_input_file> --output result.csv
For more information regarding available input arguments and flags please use extrack --help
.
Copyright (c) 2021-present Viktor Franzén
Licensed under GNU General Public License v3.0