$, cargo-*: add Korean translation (#13943)

This commit is contained in:
HoJeong Im
2024-10-03 18:48:23 +09:00
committed by GitHub
parent 7cc6c7195a
commit 0327318dc0
38 changed files with 763 additions and 0 deletions

24
pages.ko/common/$.md Normal file
View File

@@ -0,0 +1,24 @@
# Dollar sign
> bash 변수를 확장.
> 더 많은 정보: <https://gnu.org/software/bash/manual/bash.html#Shell-Variables>.
- 변수 출력:
`echo ${{변수}}`
- 이전 명령의 종료 상태를 인쇄:
`echo $?`
- 0에서 32767 사이의 임의의 숫자를 출력:
`echo $RANDOM`
- 프롬프트 문자열 중 하나를 출력:
`echo ${{PS1|PS2|PS3|PS4}}`
- `command` 출력으로 확장하여 실행. 백틱을 통해 `command`를 묶는 것과 같음:
`$({{명령어}})`