2016-11-16 52 views
0

我喜歡用bash腳本將.xlsx文件轉換爲.html文件。那可能嗎?如何使用bash腳本將.xlsx文件轉換爲html格式?

謝謝!

+1

這是不可能使用香草bash。你可以使用外部工具,如python,perl,[libroffice](http://stackoverflow.com/questions/34362464/libreoffice-converting-html-to-xls-or-xlsx)或[gnumeric](http:// stackoverflow.com/questions/10557360/convert-xlsx-to-csv-in-linux-command-line)。 – Aserre

回答

0

這是可能的,在其他外部程序的幫助下。例如,如果您有您的計算機上安裝的LibreOffice,以下bash代碼將實現你想要什麼:上面

libreoffice --invisible --convert-to html /folder/spreadsheet.xlsx --outdir /destination/folder 

的代碼工作罰款LibreOffice的版本4.3.3.2。

相關問題