1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 23:22:07 +02:00
tldr/pages.ko/common/vdir.md
K.B.Dharun Krishna 898f711019
pages/*: update GNU coreutils links, sync translation pages (#15543)
Signed-off-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2025-01-18 18:45:33 +05:30

861 B

vdir

디렉토리 내용 나열. ls -l의 대체품. 더 많은 정보: https://www.gnu.org/software/coreutils/manual/html_node/vdir-invocation.html.

  • 현재 디렉토리의 파일 및 디렉토리를 한 줄에 하나씩 자세히 나열:

vdir

  • 사람이 읽기 쉬운 단위(KB, MB, GB)로 크기를 표시하여 나열:

vdir -h

  • 숨김 파일(점으로 시작하는 파일) 포함 나열:

vdir -a

  • 크기별로 항목을 정렬하여 파일 및 디렉토리 나열 (가장 큰 것부터):

vdir -S

  • 수정 시간별로 항목을 정렬하여 파일 및 디렉토리 나열 (가장 최근 것부터):

vdir -t

  • 디렉토리를 먼저 그룹화하여 나열:

vdir --group-directories-first

  • 특정 디렉토리의 모든 파일 및 디렉토리를 재귀적으로 나열:

vdir --recursive {{경로/대상/폴더}}