Linux 파일 개수 및 디렉토리(폴더) 개수 확인
Linux 2021. 8. 24. 12:23
현재 위치에서 디렉토리 즉 폴더 개수 세기
ls -l | grep ^d | wc -l
현재 위치에서 파일의 개수 세기
ls -l | grep ^- | wc -l
현재 디렉토리의 하위 파일 개수 세기
find . -type f | wc -l
출처: https://lee-mandu.tistory.com/420 [개발/일상_Mr.lee]
'Linux' 카테고리의 다른 글
SSH 접속 에러 : Permission denied (publickey,gssapi-keyex,gssapi-with-mic). (0) | 2023.02.28 |
---|---|
Linux Core dump 파일 분석 방법(file, gdb) (0) | 2022.03.17 |
CentOS Perl 설치시 "Can't locate ExtUtils/MakeMaker.pm" 해결 방법 (0) | 2021.08.20 |
Linux 시작 프로그램 설정 ( chkconfig ) (0) | 2021.07.20 |
CentOS cp 강제로 덮어쓰기 (0) | 2021.07.19 |