basename, bash, bat, batch, bc: update Korean translation (#14603)

This commit is contained in:
HoJeong Im
2024-11-05 11:31:40 +09:00
committed by GitHub
parent 25a04d0ea3
commit a975d6136e
5 changed files with 60 additions and 39 deletions

View File

@@ -1,7 +1,7 @@
# bash
> Bourne-Again SHell, an `sh`- 호환 명령 행 인터프리터.
> 참조 : `zsh`, `histexpand` (history expansion).
> 참조: `zsh`, `histexpand` (history 확장).
> 더 많은 정보: <https://www.gnu.org/software/bash/>.
- 대화형 쉘 시작하기:
@@ -18,16 +18,20 @@
- 특정 스크립트 실행하기:
`bash {{경로/대상/script.sh}}`
`bash {{경로/대상/스크립트.sh}}`
- 각 명령어 실행 전 명령어 인쇄하며 특정 스크립트 실행하기:
- 각 명령어 실행 전 명령어 인쇄하며 특정 스크립트 실행하기(E[x]ecute):
`bash -x {{경로/대상/script.sh}}`
`bash -x {{경로/대상/스크립트.sh}}`
- 첫 번째 에러([e]rror)가 발생하면 중지되도록 하며 특정 스크립트 실행하기:
`bash -e {{경로/대상/script.sh}}`
`bash -e {{경로/대상/스크립트.sh}}`
- `stdin`에서 Bash 실행하기:
`{{echo "echo 'bash가 실행되었습니다'"}} | bash`
- 제한된([r]estricted) 쉘 세션을 시작:
`bash -r`