Bagaimana !! bekerja di bash?

34

Sangat berguna ketika Anda lupa sudo di awal perintah Anda, !!bertindak seperti alias dari perintah sebelumnya. Contoh:

$ mv /very/long/path/for/a/protected/sensible/file/caution.h .
(...) Permission denined
$ sudo !!
sudo mv /very/long/path/for(...) .
[sudo] password :
  • Bagaimana kita menyebutnya !!trik ganda ? Penelitian melalui internet sulit karena token itu.
  • Bagaimana cara kerjanya ? Saya menduga ada tautan dengan perintah sejarah.
  • Di mana itu didefinisikan? Bisakah saya mendefinisikan beberapa lainnya sendiri?

EDIT: Beberapa perancang acara yang menarik

!!:*

Ini merujuk pada argumen dari perintah sebelumnya. Gunakan kasus:

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

:p

Cukup cetak perintah tanpa menjalankannya, Anda harus meletakkannya di akhir acara.

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

Lebih lanjut di sini .

Totem
sumber
3
Bacaman history
Costas
1
Ini adalah kasus khusus ekspansi sejarah, di mana shell mencoba untuk memperluas kata yang dimulai dengan !perintah yang cocok dalam daftar histori shell saat ini. !!adalah kasus khusus, setara dengan !-1, di mana angka negatif nberikut !mengacu pada perintah sebelumnya yang ke-n.
chepner
1
@Costas, lebih bermanfaat, baca LESS='+/^HISTORY EXPANSION' man bash.
Wildcard

Jawaban:

34

!!tercantum dalam bashmanual di bawah judul "Desainer Acara":

   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.

Jadi !!akan diganti dengan perintah sebelumnya.

Perhatikan bahwa riwayat shell tidak akan berisi literal !!tetapi perintah aktual yang dieksekusi:

$ 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
Kusalananda
sumber