반응형
1. 순수 파일만 검색
# for dir in $( find . -type d -print ); do files=$( find $dir -maxdepth 1 -type f | wc -l ); echo "$files : $dir" >> counting_files_each_subdirectory; done
2. 파일시스템 입장에서는 디렉토리도 파일로 간주하기 때문에 디렉토리도 포함해서 검색
# for dir in $( find . -type d -print ); do files=$( find $dir -maxdepth 1 | wc -l ); echo "$files : $dir" >> counting_files_each_subdirectory; done
반응형
'Lang_Development > BASH' 카테고리의 다른 글
[BASH] command log (0) | 2013.12.09 |
---|---|
[BASH] How to cut the last field from a shell string (0) | 2013.12.09 |
[BASH] /bin/bash^M: bad interpreter: No such file or directory (0) | 2013.08.01 |
[sed] sed에서 shell 명령어 사용 (0) | 2013.04.22 |
숫자, 문자를 순차적으로 출력 (0) | 2012.12.30 |
최근댓글