Como é que !! trabalhar na festança?


34

Muito útil quando você esquece um sudo no início do seu comando, !!age como um apelido do comando anterior. Exemplo:

$ mv /very/long/path/for/a/protected/sensible/file/caution.h .
(...) Permission denined
$ sudo !!
sudo mv /very/long/path/for(...) .
[sudo] password :
  • Como chamamos isso de !!truque duplo ? Pesquisas pela internet são difíceis por causa desse token.
  • Como funciona ? Suspeito de um link com o comando history.
  • Onde está definido? Posso definir outro eu mesmo?

EDIT: Alguns designadores de eventos interessantes

!!:*

Refere-se aos argumentos do comando anterior. Caso de uso:

cat /a/file/to/read/with/long/path
nano !!:*

:p

Basta imprimir o comando sem executá-lo, você deve colocá-lo no final do designador de eventos.

$ !-5:p
sudo rm /etc/fstab -f

Mais aqui .


3
Leiaman history
Costas

11
É um caso especial de expansão do histórico, no qual o shell tenta expandir uma palavra começando com !um comando correspondente na lista de histórico do shell atual. !!é um caso especial, equivalente a !-1, em que um número negativo a nseguir !se refere ao enésimo enésimo comando anterior.
chepner

11
@ Costas, mais útil, leia LESS='+/^HISTORY EXPANSION' man bash.
Wildcard

Respostas:


34

!!está listado no bashmanual sob o título "Designadores de eventos":

   An event designator is a reference to a command line  entry  in  the
   history list.  Unless the reference is absolute, events are relative
   to the current position in the history list.

   !      Start a history  substitution,  except  when  followed  by  a
          blank,  newline,  carriage  return,  = or ( (when the extglob
          shell option is enabled using the shopt builtin).
   !n     Refer to command line n.
   !-n    Refer to the current command minus n.
   !!     Refer to the previous command.  This is a synonym for  `!-1'.
   !string
          Refer  to the most recent command preceding the current posi-
          tion in the history list starting with string.
   !?string[?]
          Refer to the most recent command preceding the current  posi-
          tion  in  the history list containing string.  The trailing ?
          may be omitted if string is followed immediately  by  a  new-
          line.
   ^string1^string2^
          Quick  substitution.   Repeat the previous command, replacing
          string1       with       string2.        Equivalent        to
          ``!!:s/string1/string2/'' (see Modifiers below).
   !#     The entire command line typed so far.

Então !!será substituído pelo comando anterior.

Observe que o histórico do shell não conterá o literal, !!mas o comando real que foi executado:

$ ls
[some output]

$ !! .
[same output]

$ history 3
  645  2016-08-25 17:40:55 ls
  646  2016-08-25 17:40:57 ls .
  647  2016-08-25 17:41:00 history 3
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.