1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 21:22:06 +02:00
tldr/pages.ko/common/set.md
코드싸이 4b5248236b
common/s*: add and update Korean translation (#14666)
* 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>
2024-11-09 10:41:41 +09:00

601 B

set

셸 옵션을 토글하거나 위치 매개변수의 값을 설정. 더 많은 정보: https://manned.org/set.1posix.

  • 셸 변수의 이름과 값을 표시:

set

  • 새로 초기화된 변수를 자식 프로세스에 내보내기:

set -a

  • 작업이 완료될 때 stderr에 형식화된 메시지 쓰기:

set -b

  • vi와 유사한 키 바인딩(e.g. yy)으로 명령줄에서 텍스트 쓰기 및 편집:

set -o {{vi}}

  • 기본 모드로 돌아가기:

set -o {{emacs}}

  • 모든 모드 나열:

set -o

  • (일부) 명령이 실패할 때 셸 종료:

set -e