标签: html bash shell xlsx
我想使用bash脚本将.xlsx文件转换为.html文件。那可能吗?
谢谢!
答案 0 :(得分:1)
在其他外部程序的帮助下,这是可能的。例如,如果您的计算机上安装了LibreOffice,则以下Bash代码可以实现您的目标:
libreoffice --invisible --convert-to html /folder/spreadsheet.xlsx --outdir /destination/folder
上面的代码适用于LibreOffice版本4.3.3.2。