Skip to content

Instantly share code, notes, and snippets.

@lukesnow
lukesnow / txt2xlsx.sh
Created August 17, 2014 03:46
Linux - convert txt/csv to xlsx
# File can be space or comma separated.
# ssconvert is part of gnumeric.
ssconvert test.txt test-txt.xlsx
# File must be delimited with commas. This can be done via:
# cat test.txt | tr " " "," > test.csv
soffice --headless --convert-to xlsx:"Calc MS Excel 2007 XML" test.csv