728x90
반응형
# 현재 위치에서 디렉토리(폴더) 개수 세기
ls -l | grep ^d | wc -l
# 현재 위치에서 파일 개수 세기
ls -l | grep ^- | wc -l
# 현재 위치에서 하위 파일 개수 세기
find . -type f | wc -l
출처 : https://lee-mandu.tistory.com/420
간혹 여러 폴더에서 개수를 세고싶을때는 다음 bash script 코드로 확인할 수 있다.
find . -type d -print0 | while read -d '' -r dir; do
files=("$dir"/*)
printf "%5d files in directory %s\n" "${#files[@]}" "$dir"
done
상단 코드를 count.sh 파일 등으로 저장한 후, 폴더들이 있는 곳에 파일을 위치한 후에 bash count.sh를 실행하면 아래와 같이 sub 디렉토리 내 파일 개수도 다 카운트 해준다.
728x90
반응형
'사소한 Tip . 오류 해결법' 카테고리의 다른 글
RuntimeError: OrderedDict mutated during iteration (0) | 2021.11.17 |
---|---|
DataLoader Epoch에 따라 Random Subset Sampling (0) | 2021.11.03 |
jupyter notebook dashboard - voila (0) | 2021.11.01 |
pytorch batchnormalization freeze (0) | 2021.10.15 |
Anaconda 아나콘다 환경 내보내기(Export) / anaconda 환경 공유, 복사 (0) | 2021.10.15 |