linux/e*: add Korean translation (#14684)

* linux/e*: add Korean translation

* Update pages.ko/linux/e2undo.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/linux/e2undo.md

Co-authored-by: Chooooo <contact@choo.ooo>

* Update pages.ko/linux/eyed3.md

Co-authored-by: Chooooo <contact@choo.ooo>

---------

Co-authored-by: Chooooo <contact@choo.ooo>
This commit is contained in:
코드싸이
2024-11-08 16:21:16 +09:00
committed by GitHub
parent f5ac8fe874
commit b23c3160f7
42 changed files with 918 additions and 0 deletions

24
pages.ko/linux/export.md Normal file
View File

@@ -0,0 +1,24 @@
# export
> 셸 변수를 하위 프로세스로 내보냅니다.
> 더 많은 정보: <https://www.gnu.org/software/bash/manual/bash.html#index-export>.
- 환경 변수를 설정:
`export {{변수}}={{값}}`
- 환경 변수를 해제:
`export -n {{변수}}`
- 함수를 하위 프로세스로 내보내기:
`export -f {{함수_이름}}`
- 환경 변수 `PATH`에 경로명 추가:
`export PATH=$PATH:{{경로/대상/추가}}`
- 셸 명령 형태로 활성화된 내보낸 변수 목록 표시:
`export -p`