confusão de opção de comando no curl no Linux

0

Quer saber qual é a função de @ sign? Aqui está um exemplo de comando,

curl -w "@curl-format.txt" -o /dev/null -s "http://wordpress.com/"

Aqui estão mais fundos relacionados,

link

    
por Lin Ma 17.06.2016 / 01:33

1 resposta

1

significa apenas ler o formato do arquivo nomeado.

do manual:

  -w, --write-out <format>
    Defines  what  to  display on stdout after a completed
and successful operation. The format is a string that may contain
plain text mixed with any number of variables. The string can be 
specified as "string", to get read from a particular file you
specify it "@filename" and to tell curl to read the format from
          stdin you write "@-".

usando @ como isso é bastante comum, o curl usa em vários lugares, outros comandos também.

    
por 17.06.2016 / 02:25

Tags