aws-*,bitcoin-cli,boxes,c*: update Korean translation (#14927)

* aws-*,bitcoin-cli,boxes,c*: update Korean translation

* aws-secretsmanager,chown: update Korean translation

* Update pages.ko/common/aws-secretsmanager.md

* Update pages.ko/common/aws-secretsmanager.md
This commit is contained in:
Chooooo
2024-11-26 10:41:26 +09:00
committed by GitHub
parent 4299e2113e
commit 2facdb1a18
10 changed files with 134 additions and 65 deletions

View File

@@ -5,24 +5,32 @@
- 파일을 소유한 사용자[u]에게 실행[x] 권한 부여:
`chmod u+x {{파일}}`
`chmod u+x {{경로/대상/파일}}`
- 파일/디렉토리에 읽기[r] 와 쓰기[w] 사용자 권한 부여:
`chmod u+rw {{파일명_또는_디렉토리명}}`
`chmod u+rw {{경로/대상/파일명_또는_디렉토리명}}`
- 그룹[g]에서 실행 권한 제거:
`chmod g-x {{파일}}`
`chmod g-x {{경로/대상/파일}}`
- 모든[a] 사용자에게 읽기 및 실행 권한 부여:
`chmod a+rx {{파일}}`
`chmod a+rx {{경로/대상/파일}}`
- 다른[o] 사람(파일 소유자의 그룹이 아님)에게 그룹과 동일한 권한 부여:
`chmod o=g {{파일}}`
`chmod o=g {{경로/대상/파일}}`
- 다른[o] 사람에게 모든 권한 제거:
`chmod o= {{경로/대상/파일}}`
- 그룹[g] 및 다른 사람[o]에 대한 쓰기[w]에 대한 권한을 재귀적으로 변경:
`chmod -R g+w,o+w {{디렉토리}}`
`chmod -R g+w,o+w {{경로/대상/디렉토리}}`
- 모든 사용자[a]에게 파일에 대한 읽기[r] 권한과 디렉토리에 대한 실행[X] 권한 재귀적으로 부여:
`chmod -R a+rX {{경로/대상/디렉토리}}`