Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Convert xlsx file to csv using batch

How do you convert multiple xlsx files to csv files with a batch script?

like image 858
Ankur Avatar asked Oct 18 '22 08:10

Ankur


People also ask

How do I convert an Excel file to CSV automatically?

You can convert an Excel worksheet to a text file by using the Save As command. Go to File > Save As. Click Browse. In the Save As dialog box, under Save as type box, choose the text file format for the worksheet; for example, click Text (Tab delimited) or CSV (Comma delimited).


1 Answers

Try in2csv!

Usage:

in2csv file.xlsx > file.csv
like image 35
marbel Avatar answered Oct 19 '22 21:10

marbel