Jak !! pracować w bash?


34

Bardzo przydatne, gdy zapomnisz sudo na początku polecenia, !!działa jak alias poprzedniego polecenia. Przykład:

$ mv /very/long/path/for/a/protected/sensible/file/caution.h .
(...) Permission denined
$ sudo !!
sudo mv /very/long/path/for(...) .
[sudo] password :
  • Jak nazywamy tę podwójną !!sztuczkę? Badania przez Internet są trudne z powodu tego tokena.
  • Jak to działa ? Podejrzewam, że istnieje link do polecenia historii.
  • Gdzie to jest zdefiniowane? Czy mogę sam zdefiniować coś innego?

EDYCJA: Kilka interesujących projektantów wydarzeń

!!:*

Odnosi się do argumentów poprzedniego polecenia. Przypadek użycia :

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

:p

Wystarczy wydrukować polecenie bez jego wykonania, należy je umieścić na końcu oznaczenia zdarzenia.

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

Więcej tutaj .


3
Czytajman history
Costas,

1
Jest to szczególny przypadek ekspansji historii, w którym powłoka próbuje rozwinąć słowo zaczynając od !pasującego polecenia na liście historii bieżącej powłoki. !!jest przypadkiem szczególnym, równoważnym z !-1, gdy nnastępująca po nim liczba ujemna !dotyczy n-tego poprzedniego polecenia.
chepner

1
@Casas, bardziej przydatne, czytaj LESS='+/^HISTORY EXPANSION' man bash.
Wildcard,

Odpowiedzi:


34

!!jest wymieniony w bashpodręczniku pod nagłówkiem „Projektanci wydarzeń”:

   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.

Więc !!zostanie zastąpiony poprzedniego polecenia.

Zauważ, że historia powłoki nie będzie zawierała literału, !!ale zamiast tego faktycznie wykonane polecenie:

$ 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
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.