本文介绍了从编辑标题停止的wget的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有wget的问题。当我下载用wget的东西,它显示了进度条的URL。我希望把我自己的名称和持有它。它类似于这样的问题:

I am having problems with wget. When I am downloading something with wget, it shows the url in the progressbar. I want to set my own title and hold it. It's similar to this question: Get the wget title away(and keep my own)

code:

title hello
wget http://www.white.nl/custom/img/slides/slide2/glow.png

我怎样才能从编辑标题块的wget? -q显示什么和-nv它不会显示进度了,这是我希望看到的。

how can I block wget from editing the title? -q shows nothing and with -nv it wont show the progress anymore, which I want to see

推荐答案

按它的变化,除非 - 没有详细选项中给出。

As per wget source code it changes the title on Windows unless --no-verbose option is given.

所以要保持原来的名称,看到了进步的唯一途径是发动在一个单独的[最小化]窗口的wget ,例如:

So the only way to keep the title AND see the progress is to launch wget in a separate [minimized] window, for example:

start /min /wait wget http://url

这篇关于从编辑标题停止的wget的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-23 04:59