Page 1 of 1

Convert Excel Files to CSV in Linux

Posted: Thu Feb 23, 2023 12:02 pm
by Eli
Assume your excel files are in some directory, move into that directory and execute the command below which uses LibreOffice in bash/Terminal to convert all your excel files into CSV files:

  1. for i  in *.xlsx; do  libreoffice --headless --convert-to csv "$i" ; done

Or install csvkit:

  1. sudo apt-get install csvkit

and use it to convert your excel files into CSV files as

  1. in2csv data.xlsx > data.csv

See more excel_to_csv