标签:
centos下安装软件的命令不是apt-get,而是yum,如果安装w3m,利用sudo yum install w3m w3m-img -y即
w3m具体命令 参数
w3m version w3m/0.5.2, options lang=en,m17n,image,color,ansi-color,mouse,gpm,menu,cookie,ssl,ssl-verify,external-uri-loader,w3mmailer,nntp,gopher,ipv6,alarm,mark
usage: w3m [options] [URL or filename]
options:
-t tab set tab width
-r ignore backspace effect
-l line # of preserved line (default 10000)
-I charset document charset
-O charset display/output charset
-e EUC-JP
-s Shift_JIS
-j JIS
-B load bookmark
-bookmark file specify bookmark file
-T type specify content-type
-m internet message mode
-v visual startup mode
-M monochrome display
-N open URL of command line on each new tab
-F automatically render frame
-cols width specify column width (used with -dump)
-ppc count specify the number of pixels per character (4.0...32.0)
-ppl count specify the number of pixels per line (4.0...64.0)
-dump dump formatted page into stdout
-dump_head dump response of HEAD request into stdout
-dump_source dump page source into stdout
-dump_both dump HEAD and source into stdout
-dump_extra dump HEAD, source, and extra information into stdout
-post file use POST method with file content
-header string insert string as a header
+<num> goto <num> line
-num show line number
-no-proxy don‘t use proxy
-4 IPv4 only (-o dns_order=4)
-6 IPv6 only (-o dns_order=6)
-no-mouse don‘t use mouse
-cookie use cookie (-no-cookie: don‘t use cookie)
-pauth user:pass proxy authentication
-graph use graphic character
-no-graph don‘t use graphic character
-S squeeze multiple blank lines
-W toggle wrap search mode
-X don‘t use termcap init/deinit
-title[=TERM] set buffer name to terminal title string
-o opt=value assign value to config option
-show-option print all config options
-config file specify config file
-help print this usage message
-version print w3m version
-reqlog write request logfile
-debug DO NOT USE
使用w3m上网方法:
第一步,需要安装一个名为w3m的软件工具,打开终端,输入如下命令
sudo apt-get install w3m w3m-img -y
第二步,安装好w3m之后,在终端里面启动w3m,打开一个网址,比如w3m www.baidu.com 。现在是不是看到了只有在浏览器下面才能看到的百度首页呢?
如果您的终端不显示中文请。安装zhcon。安装命令:
sudo apt-get install zhcon -y
好了,下面给出w3m的相关帮助文件。
与vim常用命令vim常用命令集相似,h,j,k,l 可以分别用来做移动键,分别是左,下,上,右。如果你熟习vim操作的话这会是很方便的功能。 < 和 > 用来左右滚屏。
按q就会提示你退出!
在需要输入的文本框内按回车,下面就会出现TEXT: ,这时你可以输入你要搜索的文字。再按回车就是返回给文本框。这时再把光标移到”百度搜索”的那个按键,回车,就可以开始搜索了!
使用 U 来重新输入需要打开的网址。
B 返回前一个页面。
多标签操作!
可以使用 T 按键来打开一个新标签。
在多个标签内切换呢? 使用 { 和 }就可以了!
使用 ESC-t 的话会打开标签的菜单让你选择,功能类似系统中的alt-tab功能。
C-q用于关于当前标签页。
书签
C-a 添加书签
C-b 查看书签
查找
/ 向后查找当前页面
? 向前查找当前页面
n 查找下一个已查找过的关键字
N 向前查找已查找过的关键字
帮助
H 以上的选项在这里都可以看到!
标签:
原文地址:http://www.cnblogs.com/IEBD/p/4499861.html