common/k*: add Korean translation (#14560)

This commit is contained in:
코드싸이
2024-11-02 15:16:58 +09:00
committed by GitHub
parent 4e659ba38f
commit b6bf0c2f48
41 changed files with 1041 additions and 0 deletions

25
pages.ko/common/ksh.md Normal file
View File

@@ -0,0 +1,25 @@
# ksh
> Korn Shell, Bash와 호환되는 명령줄 인터프리터.
> 같이 보기: `histexpand`.
> 더 많은 정보: <http://kornshell.com>.
- 대화형 셸 세션 시작:
`ksh`
- 특정 [c]명령어 실행:
`ksh -c "{{echo 'ksh is executed'}}"`
- 특정 스크립트 실행:
`ksh {{경로/대상/스크립트.ksh}}`
- 특정 스크립트를 실행하지 않고 구문 오류 검사:
`ksh -n {{경로/대상/스크립트.ksh}}`
- 특정 스크립트를 실행하면서 각 명령을 실행 전 출력:
`ksh -x {{경로/대상/스크립트.ksh}}`