linux/d*: add Korean translation (#14683)

This commit is contained in:
코드싸이
2024-11-08 15:51:52 +09:00
committed by GitHub
parent b3cbaf7b55
commit 53b2ce7e7f
73 changed files with 1566 additions and 0 deletions

25
pages.ko/linux/dir.md Normal file
View File

@@ -0,0 +1,25 @@
# dir
> 한 줄에 하나의 파일씩 디렉토리 내용을 나열하며, 특수 문자는 백슬래시 이스케이프 시퀀스로 표시됩니다.
> `ls -C --escape`와 같이 작동합니다.
> 더 많은 정보: <https://manned.org/dir>.
- 숨김 파일을 포함한 모든 파일 나열:
`dir --all`
- 파일 작성자 정보를 포함하여 나열 (`-l` 필요):
`dir -l --author`
- 지정된 블롭 패턴과 일치하는 파일을 제외하고 나열:
`dir --hide={{패턴}}`
- 하위 디렉토리를 재귀적으로 나열:
`dir --recursive`
- 도움말 표시:
`dir --help`