Below you will find pages that utilize the taxonomy term “xlsx”
Blog
Convert XLS/XLSX to CSV in Bash
In most of the modern Linux distributions, Libre Office is available and it can be used to convert XLS or XLSX file(s) to CSV file(s) in bash.
For XLS file(s):
1for i in *.xls; do libreoffice --headless --convert-to csv "$i"; done For XLSX file(s):
1for i in *.xlsx; do libreoffice --headless --convert-to csv "$i"; done You may get following warning but it still works fine:
1javaldx: Could not find a Java Runtime Environment!