Nasıl !! bash çalışmak?


34

Komutunuzun başında bir sudo unuttuğunuzda çok yararlıdır !!, önceki komutun diğer adı gibi davranır. Örnek :

$ mv /very/long/path/for/a/protected/sensible/file/caution.h .
(...) Permission denined
$ sudo !!
sudo mv /very/long/path/for(...) .
[sudo] password :
  • Bu ikili !!numaraya nasıl ad veririz ? İnternet üzerinden yapılan araştırmalar bu belirteç nedeniyle zor.
  • O nasıl çalışır ? Tarih komutuyla bir bağlantıdan şüpheleniyorum.
  • Nerede tanımlanır? Kendimden bazılarını tanımlayabilir miyim?

EDIT: Bazı ilginç olay göstergeleri

!!:*

Önceki komutun argümanlarına atıfta bulunur. Kullanım durumda:

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

:p

Komutu çalıştırmadan yazdırmanız yeterlidir, olay tanımlayıcısının sonuna koymak zorundasınız.

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

Daha burada .


3
Okuman history
Costas,

1
Bu, kabuğun !, geçerli kabuğun geçmiş listesinde eşleşen bir komutla başlayan bir sözcüğü genişletmeye çalıştığı, tarihin genişlemesi için özel bir durumdur . Aşağıdaki , negatif bir sayının önceki ns komutuna gönderme yaptığı !!eşdeğer bir özel durumdur . !-1n!
chepner

1
@Costalar, daha faydalı, oku LESS='+/^HISTORY EXPANSION' man bash.
Joker

Yanıtlar:


34

!!bashkılavuzda "Olay Göstergeleri" başlığı altında listelenmiştir :

   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.

Böylece !!önceki komutla değiştirilecektir.

Kabuk geçmişinin değişmezleri !!değil, yerine gerçek komutu içereceğini unutmayın :

$ 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
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.