ubuntu count directory files
현재 위치에서 파일의 개수 세기
ls -l | grep ^- | wc -l
현재 디렉토리의 하위 파일 개수 세기
find . -type f | wc -l
Reference
- https://lee-mandu.tistory.com/420
현재 위치에서 파일의 개수 세기
ls -l | grep ^- | wc -l
현재 디렉토리의 하위 파일 개수 세기
find . -type f | wc -l