OS/Linux

Linux 폴더의 파일개수 세기

novaray 2022. 5. 23. 15:26

Linux 에서 폴더를 지정 하위폴더의 파일 개수를 확인 할때 사용하는 명령어

find /폴더/경로 -type f | wc -l

ex)
[root@Test /]# find /tmp -type f |wc -l
5
[root@Test /]# find /etc/sysconfig/ -type f |wc -l
77
[root@Test /]#