[Command] Linux 파일&폴더 개수 세기 본문

Linux Command

[Command] Linux 파일&폴더 개수 세기

최재강 2021. 8. 31. 14:39

현재 디렉토리에서 파일 개수 세기

ls -l | grep ^- | wc -l

현재 디렉토리에서 폴더 개수 세기

ls -l | grep ^d | wc -l

현재 디렉토리에서 하위 파일 개수 세기

find . -type f | wc -l

'Linux Command' 카테고리의 다른 글

[Command] scp 사용법  (0) 2021.10.05
[Command] Linux 특정 파일 제외 하고 보기  (0) 2021.09.14
Comments