xlslib

C/C++ library to programmatically create Excel .xls files

brewmacoslinux
Try with needOr install directly
Source

About

C++/C library to construct Excel .xls files in code

Commands

xlslib

Examples

Create a simple Excel spreadsheet with basic data$ xlslib create -o output.xls -d 'Sheet1' -c 'A1:Hello World'
Generate Excel file with multiple sheets and formatted cells$ xlslib create -o report.xls -s Sheet1,Sheet2 -d 'Sheet1' -c 'A1:Header' -f bold,center
Convert CSV data to Excel format using xlslib$ cat data.csv | xlslib import -o spreadsheet.xls -t 'Data'