I need to convert a lot of XLSX files to CSV, but each file has tabs, which must be converted to individual files if they have data in them.
In addition, I need to convert only those tabs that follow a pattern in their name, for example, "Tab1".
So far, I have managed to batch convert the files, although it only prints the first tab, using the ssconvert utility:
find. -name '* .xlsx' -exec ssconvert -T Gnumeric_stf: stf_csv {} \;
But when I try to add the tabs flag (-S
) or the flag to include those tabs with a pattern (-I
), I only get the following message:
find. -name '* .xlsx' -exec ssconvert -S -I tab1 -T Gnumeric_stf: stf_csv {} \;
An output file name or an explicit export type is required.
How do I do this correctly?
I just found the solution, I leave it here in case someone finds it useful. In the end I created a small script that performs the actions: