Fast conversion of microsoft xlsx to csv.
Built using C as cross-compiled static musl executable.
# convert to csv, skip first line and calculate statistics using xsv
xls2csv < sheet.xlsx | tail -n +2 | xsv stats
Just build Dockerfile. Depends on just for some trivial steps for extracting xls2csv
executable from container to host.
just build