wget -e "http_proxy=192.168.2.73:8080" -r -p -np -k http://www.mouseos.com/

-e 在命令行中使用.wgetrc支持的各种配置
-r 递归下载
-p 下载页面的所有元素,图片,rar文件等
-np 不追溯到父目录,不下载其他网站的链接
-k 将链接地址转换为相对地址

参考:
http://blog.csdn.net/paulluo0739/article/details/7313994
http://blog.csdn.net/kowity/article/details/6899256

如果网站的部分页面需要登录才能下载,可以先用wget取得cookies,再带着cookies下载,例子如下:

取得cookies:

wget --execute="http_proxy=192.168.2.73:8080"
--save-cookies=login_info.txt
--post-data="username=user1&password=pass1"
http://www.xxx.com/actions/login_test.jsp

使用cookies:

wget --execute="http_proxy=192.168.2.73:8080"
--load-cookies=login_info.txt
http://www.xxx.com/assistant/test.jsp

上面用到的几个参数的意义:
--execute=COMMAND     execute a `.wgetrc'-style command.
--load-cookies=FILE   load cookies from FILE before session.
--save-cookies=FILE   save cookies to FILE after session.
--post-data=STRING    use the POST method; send STRING as the data.


本文链接地址: 使用wget命令进行整站下载
https://blog.qingfengju.com/index.asp?id=344

分类:Linux 查看次数:10863 发布时间:2013/8/21 10:35:50

1.Notepad++选项卡上的末尾字符被关闭按钮遮住,解决方法
DocTabView.cpp 140行

tie.pszText = (TCHAR *)buffer->getFileName();
//改为:
TCHAR szText[MAX_PATH];
StrCpyW(szText,(TCHAR *)buffer->getFileName());
StrCatW(szText,L"  ");
tie.pszText = szText;

2.文本编辑框的边框太粗,改为细边框
ScintillaEditView.cpp 172行

WS_EX_CLIENTEDGE
//改为:
WS_EX_STATICEDGE

TabBar.cpp 250行

0
//改为:
WS_EX_STATICEDGE

3.新建文件的默认标题"new 1",改为"NewText01"
Buffer.h 64行

const TCHAR UNTITLED_STR[] = TEXT("new ");
改为:
const TCHAR UNTITLED_STR[] = TEXT("NewText");

Buffer.cpp 720行
TCHAR nb[10];

wsprintf(nb, TEXT(" %d"), _nextNewNumber);
//改为:
TCHAR nb[20];
wsprintf(nb, TEXT("%02d"), _nextNewNumber);

Buffer.cpp 738行

TCHAR nb[10];
wsprintf(nb, TEXT(" %d"), _nextNewNumber);
//改为:
TCHAR nb[20];
wsprintf(nb, TEXT("%02d"), _nextNewNumber);

4.菜单中的"?"改为帮助
Notepad_plus.rc 812行

POPUP "&?"
//改为:
POPUP "帮助(&H)"

5.备注,右键中添加打开方式为Notepad++的方法

Windows Registry Editor Version 5.00

[HKEY_CLASSES_ROOT\*\shell\用Notepad++打开]

[HKEY_CLASSES_ROOT\*\shell\用Notepad++打开\command]
@="\"<Your Path>\\npp.6.4.5\\notepad++.exe\" \"%1\""

以上修改基于版本6.4.5,修改后的效果见下图(点击图片看原图):
 


本文链接地址: 对Notepad++外观的一点小修改
https://blog.qingfengju.com/index.asp?id=343

分类:Win32/C++ 查看次数:8737 发布时间:2013/8/15 23:19:53