mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-29 23:24:55 +02:00

* common/s*: add and update Korean translation * scamper: fix typo * Update pages.ko/common/simplehttpserver.md Co-authored-by: Chooooo <contact@choo.ooo> * Update pages.ko/common/steamcmd.md Co-authored-by: Chooooo <contact@choo.ooo> --------- Co-authored-by: Sebastiaan Speck <shem.speck@gmail.com> Co-authored-by: Chooooo <contact@choo.ooo>
25 lines
607 B
Markdown
25 lines
607 B
Markdown
# shopt
|
|
|
|
> Bash 셸 옵션 관리: Bash 셸에 특화된 동작을 제어하는 변수(`$BASHOPTS`에 저장).
|
|
> 일반적인 POSIX 셸 변수는 `set` 명령으로 대신 관리 (`$SHELLOPTS`에 저장).
|
|
> 더 많은 정보: <https://www.gnu.org/software/bash/manual/html_node/The-Shopt-Builtin.html>.
|
|
|
|
- 설정 가능한 모든 옵션과 설정 여부 나열:
|
|
|
|
`shopt`
|
|
|
|
- 옵션 설정:
|
|
|
|
`shopt -s {{옵션_이름}}`
|
|
|
|
- 옵션 해제:
|
|
|
|
`shopt -u {{옵션_이름}}`
|
|
|
|
- 실행 가능한 `shopt` 명령으로 형식화된 모든 옵션과 상태 목록 출력:
|
|
|
|
`shopt -p`
|
|
|
|
- 도움말 표시:
|
|
|
|
`help shopt`
|