Shell-Script

將 html 表轉換為類似 ncurses 的 ascii 表?

  • March 1, 2011

我在 html 表中有一些文件。我想將表轉換為 ascii 表,就像您在獲取 mysql 命令行結果時看到的那樣,如下所示:

+------------+------------+
| header     | header     |
+------------+------------+
| cell data  | cell data  |
+------------+------------+
| cell data  | cell data  |
+------------+------------+

…所以我可以將它包含在一些程式碼註釋中。

我怎麼能輕鬆做到這一點?我正在考慮將 lynx 的輸出通過管道傳輸到一個文件中,但是 lynx 並沒有在表格周圍放置 ascii 邊框:P

我還想控制單元格寬度,以便內容單元格不會溢出到程式碼的可接受螢幕寬度之外。

您最好使用連結進行表格渲染:

links -width 80 -dump http://website.com/ > file.html

引用自:https://unix.stackexchange.com/questions/8427