어떻게! ! 배쉬에서 일하시나요?

어떻게! ! 배쉬에서 일하시나요?

명령 시작 부분에서 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

여기에서 더 알아보기.

답변1

!!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.

따라서 !!이전 명령으로 대체됩니다.

셸 기록에는 text 가 포함되지 않지만 !!실제 명령은 실행됩니다.

$ 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

관련 정보