multiple pages: normalize line endings from CRLF to LF

This commit is contained in:
bl-ue
2021-01-12 08:27:59 -05:00
committed by Waldir Pimenta
parent a7069a26b4
commit 567dc4ce06
66 changed files with 1447 additions and 1447 deletions

View File

@@ -1,32 +1,32 @@
# bash
> Bourne-Again SHell. `sh`-호환 명령 행 인터프리터.
> 더 많은 정보는: <https://gnu.org/software/bash>.
- 대화식 쉘 시작:
`bash`
- 명령 실행:
`bash -c "{{command}}"`
- 파일에서 명령 실행:
`bash {{file.sh}}`
- 파일에서 명령 실행하고, 터미널에서 실행 된 모든 명령 기록:
`bash -x {{file.sh}}`
- 파일에서 명령 실행하고, 첫 번째 에러에서 중지:
`bash -e {{file.sh}}`
- `stdin`에서 명령 실행:
`bash -s`
- bash의 버전 정보 출력 (`echo $BASH_VERSION`을 사용하여 버전 문자열만 표시):
# bash
> Bourne-Again SHell. `sh`-호환 명령 행 인터프리터.
> 더 많은 정보는: <https://gnu.org/software/bash>.
- 대화식 쉘 시작:
`bash`
- 명령 실행:
`bash -c "{{command}}"`
- 파일에서 명령 실행:
`bash {{file.sh}}`
- 파일에서 명령 실행하고, 터미널에서 실행 된 모든 명령 기록:
`bash -x {{file.sh}}`
- 파일에서 명령 실행하고, 첫 번째 에러에서 중지:
`bash -e {{file.sh}}`
- `stdin`에서 명령 실행:
`bash -s`
- bash의 버전 정보 출력 (`echo $BASH_VERSION`을 사용하여 버전 문자열만 표시):
`bash --version`