?? w3m2links.gawk
字號:
#! /usr/bin/gawk -f## This converts w3m bookmarks.html to ELinks bookmarks.lst used by the Lua# based bookmarks handling (NOT the internal one!).## Feed it by w3m bookmarks.html on stdin.## Done by Stephane Chazelas <stephane.chazelas@free.fr>#BEGIN { FS="[<>\"]" c="return {"}$2 == "h2" { print c "\n {\n category = \""$3"\";" c=" },"}$2 == "li" { print " { name = \""$7"\", url = \""$5 "\" },"}END { print " },\n}"}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -