본문 바로가기
개발/linux

linux ls 사용법(숨겨진/하위 콘텐츠) 설명

by amkorousagi 2022. 10. 21.

linux ls

사용하는 이유

파일의 간략한 정보를 알기 위해 (stat보다는 덜 자세함)

기본 사용법

ls
ls <file>
ls <file 1> <file 2> ... <file n>
ls <directory>
ls <directory 1> <directory 2> ... <directory n>

 

숨겨진 콘텐츠 자세히 보기

ls -ali

-a : --all 숨겨진 파일(.으로 시작하는)을 무시하지 않는다

-l : 더 길고 자세한 포맷을 사용

-i : --inode 각 파일의 index number(disk상의 물리 주소)를 출력

하위 디렉터리의 콘텐츠 자세히 보기

ls -Rli

-R : --recursive 하위 디렉터리에 대해서도 재귀적으로 ls 한다. 

 

linux man page 설명

ls - list directory contents
List information about the FILEs (the current directory by default). Sort entries alphabetically if none of -cftuvSUX nor --sort.
Mandatory arguments to long options are mandatory for short options too.

(해석)

ls - 디렉터리의 콘텐츠를 나열합니다

 

파일들의 정보를 나열합니다(기본적으로 현재 디렉터리를 대상으로 함). -cfruvSUX 나 --sort 가 없는 경우 알파벳 순서대로 정렬합니다.

긴 옵션(예:--recursive)의 필수 인자는 짧은 옵션(예:-R)에서도 필수입니다.

 

출처:

 

 

ls(1): directory contents - Linux man page

ls(1) - Linux man page Name ls - list directory contents Synopsis ls [OPTION]... [FILE]... Description List information about the FILEs (the current directory by default). Sort entries alphabetically if none of -cftuvSUX nor --sort. Mandatory arguments to

linux.die.net

 

댓글