[Seek Help] cpp的大佬们,调代码啦!github下载zip代理 Resolved
Tofloor
poster avatar
捕风
deepin
2022-05-13 06:27
Author

代理 https://ghproxy.com/

https://gitee.com/aohanhongzhi/wgets

错误如下!

image.png

程序目的就是wget命令加上代理前缀。

使用wgets 就好了。

成品给大家分享下,github zip包下载的代理!!!

https://gitee.com/aohanhongzhi/wgets/releases/1.0

Reply Favorite View the author
All Replies
忘记、过去
deepin
2022-05-13 06:36
#1

system 的参数好像只能是 char* 这样子?Qt/C++ 里面都是 QString + toUtf8() 这样子转一下再用的......

Reply View the author
捕风
deepin
2022-05-13 06:42
#2
忘记、过去

system 的参数好像只能是 char* 这样子?Qt/C++ 里面都是 QString + toUtf8() 这样子转一下再用的......

    string command = "wget " + args[1];
    const char * command_ = command.c_str();
    auto err = system(command_);
Reply View the author
wtz
deepin
2022-05-13 17:00
#3
It has been deleted!
SamLukeYes
deepin
2022-05-13 19:31
#4

反向代理这种东西完全可以自建一个。把这个部署到 cloudflare workers 上,你就有自己的反代了。

Reply View the author
捕风
deepin
2022-05-14 00:14
#5
SamLukeYes

反向代理这种东西完全可以自建一个。把这个部署到 cloudflare workers 上,你就有自己的反代了。

不错,好像还免费

Reply View the author