Celeb Glow
general | April 04, 2026

Convert .csv file to .ods using terminal

Is it possible convert .csv files to .ods files using command line? I have a lot archives to convert and I don't want convert them one by one.

0

1 Answer

I used the LibreOffice commandline to convert a sample csv file:

soffice --convert-to ods koko.csv --headless

So to use it in a batch command would be

for i in "$1"/*; do soffice --convert-to ods "$i" --headless; done

Usage: ./converter.sh /path/to/folder

1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy