制作一个qt文档的方法

就是从官方网站上面下载成脱机版本的。
命令如下:
wget \
--recursive \
--no-clobber \
--page-requisites \
--html-extension \
--convert-links \
--restrict-file-names=windows \
--domains doc.qt.nokia.com \
--no-parent \
http://doc.qt.nokia.com/4.5/


这样,大约从16:45下载,到17:15左右结束(48M),下下来的文件如果没有限制就和直接在网上看一样了。
每个选项的含义:
--recursive:递归去下载(简写-r)
--domains doc.qt.nokia.com:限制只下载那个域名(简写-D ***)
--no-parent:不要下载这个目录上边的文件(简写-np)
--page-requisites:下载页面所包括的一切对象(简写-p)
--html-extension:把文件按html格式存放(简写-E)
--convert-links:把页面中的连接转化为本地的连接(简写-k)
--restrict-file-names=windows:格式化文件名使可以在Windows下查看.
--no-clobber:不要复盖任何文件(简写-nc)

你可能感兴趣的:(html,windows,qt,Nokia)