что делает wget-qO-127.0.0.1 средних?

Я попытался гуглить для ответа в течение часа теперь и все еще никакой удачи. Кто-либо знает то, что эту команду означают?

wget -qO- 127.0.0.1

Я знаю wget Linux "сеть, получают" утилиту, и 127.0.0.1 localhost. Я понятия не имею однако что -qO- средний?

Я также полагаю, что вышеупомянутое отличается от wget -q -O 127.0.0.1 как от простого выполнения в терминале дает мне другой результат.

Примечание: Я пытаюсь понять эту команду от этой Бродяги - Начинающее Учебное руководство.

Заранее большое спасибо.

9
задан 2 August 2015 в 08:22

2 ответа

Ваше поисковое нечто является неполным. Попробуйте man wget, который говорит, частично:

   -O file
   --output-document=file
       The documents will not be written to the appropriate files, but all will be concatenated together and written to file.  If - is used as
       file, documents will be printed to standard output, disabling link conversion.  (Use ./- to print to a file literally named -.)

       Use of -O is not intended to mean simply "use the name file instead of the one in the URL;" rather, it is analogous to shell
       redirection: wget -O file http://foo is intended to work like wget -O - http://foo > file; file will be truncated immediately, and all
       downloaded content will be written there.

       For this reason, -N (for timestamp-checking) is not supported in combination with -O: since file is always newly created, it will
       always have a very new timestamp. A warning will be issued if this combination is used.

       Similarly, using -r or -p with -O may not work as you expect: Wget won't just download the first file to file and then download the
       rest to their normal names: all downloaded content will be placed in file. This was disabled in version 1.11, but has been reinstated
       (with a warning) in 1.11.2, as there are some cases where this behavior can actually have some use.

       Note that a combination with -k is only permitted when downloading a single document, as in that case it will just convert all relative
       URIs to external ones; -k makes no sense for multiple URIs when they're all being downloaded to a single file; -k can be used only when
       the output is a regular file.

и

   -q
   --quiet
       Turn off Wget's output.
11
ответ дан 23 November 2019 в 04:51

Для этого вида вопросов, если у Вас есть браузер поблизости, Вы могли бы найти удобным использовать explainshell.com (поскольку страницы справочника могут быть довольно длинными для движения до находки параметров, Вы заинтересовали):

enter image description here

7
ответ дан 23 November 2019 в 04:51

Другие вопросы по тегам:

Похожие вопросы: