Wie geht das !! in bash arbeiten?


34

Sehr nützlich, wenn Sie ein Sudo am Anfang Ihres Befehls vergessen haben und sich !!wie ein Alias ​​des vorherigen Befehls verhalten. Beispiel

$ mv /very/long/path/for/a/protected/sensible/file/caution.h .
(...) Permission denined
$ sudo !!
sudo mv /very/long/path/for(...) .
[sudo] password :
  • Wie nennen wir diesen doppelten !!Trick? Recherchen über das Internet sind deshalb schwierig.
  • Wie funktioniert es ? Ich vermute einen Zusammenhang mit dem Befehl history.
  • Wo ist es definiert? Kann ich selbst einen anderen definieren?

EDIT: Einige interessante Eventbezeichner

!!:*

Es verweist auf die Argumente des vorherigen Befehls. Anwendungsfall :

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

:p

Drucken Sie den Befehl einfach aus, ohne ihn auszuführen. Sie müssen ihn am Ende des Ereignisbezeichners einfügen.

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

Mehr hier .


3
Lesenman history
Costas

1
Es ist ein Sonderfall der Verlaufserweiterung, bei dem die Shell versucht, ein Wort zu erweitern, das mit !einem übereinstimmenden Befehl in der Verlaufsliste der aktuellen Shell beginnt . !!Dies ist ein Sonderfall, der dem entspricht !-1, bei dem eine nnachstehende negative Zahl !auf den n-ten vorherigen Befehl verweist.
Chepner

1
@Costas, sinnvoller, lesen LESS='+/^HISTORY EXPANSION' man bash.
Wildcard

Antworten:


34

!!ist im bashHandbuch unter der Überschrift "Event Designators" aufgeführt:

   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.

So !!wird mit dem vorherigen Befehl ersetzt werden.

Beachten Sie, dass der Shell-Verlauf nicht das Literal, !!sondern den tatsächlich ausgeführten Befehl enthält:

$ 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
Durch die Nutzung unserer Website bestätigen Sie, dass Sie unsere Cookie-Richtlinie und Datenschutzrichtlinie gelesen und verstanden haben.
Licensed under cc by-sa 3.0 with attribution required.