Convert xlsx to csv in Linux with command line

后端 未结 10 1327
心在旅途
心在旅途 2020-11-28 00:36

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

10条回答
  •  醉话见心
    2020-11-28 00:57

    Using the Gnumeric spreadsheet application which comes which a commandline utility called ssconvert is indeed super simple:

    find . -name '*.xlsx' -exec ssconvert -T Gnumeric_stf:stf_csv {} \;
    

    and you're done!

提交回复
热议问题