कैसे !! काम में?


34

बहुत उपयोगी है जब आप अपने कमांड की शुरुआत में एक sudo भूल जाते हैं, !!पिछले कमांड के एक उपनाम की तरह कार्य करता है। उदाहरण :

$ mv /very/long/path/for/a/protected/sensible/file/caution.h .
(...) Permission denined
$ sudo !!
sudo mv /very/long/path/for(...) .
[sudo] password :
  • हम उस दोहरी !!चाल को कैसे कहते हैं ? उस टोकन के कारण इंटरनेट पर शोध मुश्किल है।
  • यह कैसे काम करता है ? मुझे इतिहास कमांड के साथ लिंक पर संदेह है।
  • इसे कहाँ परिभाषित किया गया है? क्या मैं स्वयं कुछ और परिभाषित कर सकता हूं?

संपादित करें: कुछ दिलचस्प घटना डिजाइनर्स

!!:*

यह पिछली कमांड के तर्कों को संदर्भित करता है। उदाहरण :

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

:p

बस इसे निष्पादित किए बिना कमांड प्रिंट करें, आपको इसे इवेंट डिज़ाइनर के अंत में रखना होगा।

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

यहाँ और


3
पढ़ेंman history
कोस्टास

1
यह इतिहास के विस्तार का एक विशेष मामला है, जिसमें शेल !मौजूदा शेल के इतिहास सूची में एक मेल कमांड के साथ शुरू होने वाले शब्द का विस्तार करने का प्रयास करता है । !!एक विशेष मामला है, जिसके समतुल्य !-1, जहां एक नकारात्मक संख्या nनिम्नलिखित !nth पिछली कमांड को संदर्भित करती है।
chepner

1
@ कोस्टस, अधिक उपयोगी, पढ़ें LESS='+/^HISTORY EXPANSION' man bash
वाइल्डकार्ड

जवाबों:


34

!!bash"इवेंट डिज़ाइनर" शीर्षक के तहत मैनुअल में सूचीबद्ध है :

   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.

तो !!पिछले कमांड से बदल दिया जाएगा।

ध्यान दें कि शेल इतिहास में शाब्दिक नहीं होगा, !!बल्कि वास्तविक कमांड निष्पादित किया गया था:

$ 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
हमारी साइट का प्रयोग करके, आप स्वीकार करते हैं कि आपने हमारी Cookie Policy और निजता नीति को पढ़ और समझा लिया है।
Licensed under cc by-sa 3.0 with attribution required.