bash [-+]O shopt_name이 설명서에서 예상한 대로 작동하지 않습니다.

bash [-+]O shopt_name이 설명서에서 예상한 대로 작동하지 않습니다.

Bash 매뉴얼은 다음과 같이 말합니다:

"

  [-+]O [shopt_option]
          shopt_option is one of the shell options accepted by the
          shopt builtin (see SHELL BUILTIN COMMANDS below).  If
          shopt_option is present, -O sets the value of that option;
          +O unsets it.  If shopt_option is not supplied, the names
          and values of the shell options accepted by shopt are
          printed on the standard output.  If the invocation option
          is +O, the output is displayed in a format that may be
          reused as input.

"

그러나 현재 bash 인스턴스에 기본적으로 extglob 옵션이 설정되어 있다고 가정해 보겠습니다. 이제 bash를 실행하여 새 인스턴스를 호출하면 bash +O extglobextglob이 새 인스턴스에 대해 계속 설정됩니다. 그러나 이제 shopt -u extglob새 인스턴스에서 실행하면 extglob이 설정 해제됩니다.

무슨 일이죠? 왜 bash [-+]O opt_name작동하지 않나요?

문제에 대한 나의 유일한 추측은 아마도 내가 달렸을 때 bash +O extglob처음에는부트로더extglob의 bash를 닫은 다음 다시 bash하십시오.시작하다모든 구성 파일을 읽고 extglob처럼 기본적으로 켜져 있어야 하는 모든 shopt 옵션을 활성화합니다. 따라서 extglob이 처음에 비활성화되었더라도 다시 활성화하십시오.

관련 정보