if*, ignite, ilbmtoppm, im*: add Korean translation (#14667)

This commit is contained in:
HoJeong Im
2024-11-06 17:24:36 +09:00
committed by GitHub
parent 2e6a0c72ed
commit 07ab2a759a
12 changed files with 211 additions and 0 deletions

21
pages.ko/common/ifs.md Normal file
View File

@@ -0,0 +1,21 @@
# IFS
> IFS (Internal Field Separator)는 Unix쉘에서 단어 분할에 사용되는 구분 기호를 정의하는 특수 환경 변수.
> IFS의 기본값은 공백, 탭 및 줄바꿈. 세 문자는 구분 기호 역할을 함.
> 더 많은 정보: <https://www.gnu.org/software/bash/manual/html_node/Word-Splitting.html>.
- 현재 IFS 값 보기:
`echo "$IFS"`
- IFS 값 변경:
`IFS="{{:}}"`
- IFS를 기본값으로 재설정:
`IFS=$' \t\n'`
- 서브셸에서 IFS 값을 일시적으로 변경:
`(IFS="{{:}}"; echo "{{one:two:three}}")`