O que faz e faz no meio de “exec & / dev / null”?

12

Meu comando é:

exec &>/dev/null

O que isso e & e comando completo faz aqui? Eu sei que está sendo redirecionado para o bloco de bits.

    
por William Ross 28.06.2017 / 21:20

1 resposta

22

É &> , não apenas & .

Em bash , &> redireciona o fluxo de saída padrão e o fluxo de erro padrão para algum lugar.

Por isso, utility &>/dev/null é o mesmo que utility >/dev/null 2>&1 .

O comando exec &>/dev/null redireciona os dois fluxos de saída do shell atual para /dev/null .

A parte relevante do manual bash :

Redirecting Standard Output and Standard Error                              
   This construct allows both the standard output (file descriptor 1) and  
   the standard error output (file descriptor 2) to be redirected to the   
   file whose name is the expansion of word.                               

   There are two formats for redirecting standard output and standard      
   error:                                                                  

          &>word                                                           
   and                                                                     
          >&word                                                           

   Of the two forms, the first is preferred.  This is semantically         
   equivalent to                                                           

          >word 2>&1                                                       

   When using the second form, word may not expand to a number or -.  If   
   it does, other redirection operators apply (see Duplicating File        
   Descriptors below) for compatibility reasons.                           
    
por 28.06.2017 / 21:27