I\'m looking for a way to convert xlsx files to csv files on Linux.
I do not want to use PHP/Perl or anything like that since I\'m looking at processing several mill
If .xlsx file has many sheets, -s flag can be used to get the sheet you want. For example:
.xlsx
-s
xlsx2csv "my_file.xlsx" -s 2 second_sheet.csv
second_sheet.csv would contain data of 2nd sheet in my_file.xlsx.
second_sheet.csv
my_file.xlsx