bash shell 파일 크기 확인System Management2017. 1. 20. 16:08
Table of Contents
명령어 예제
echo wc -c $file_path | awk '{print $1}'
코드 예제
maxim_size=4000
while IFS='' read -r line || [[ -n "$line" ]]; do
file_path=/workspace/yoruba/all/$line
size=$(du -m "$file_path" | cut -f 1)
if [ $size -ge $maxim_size ]; then
echo over szie > maxim_size
else
echo under szie < maxim_size
fi
반응형
'System Management' 카테고리의 다른 글
리눅스 dd 명령어 이용한 dumy 파일 생성하기 (0) | 2017.02.13 |
---|---|
리눅스 좀비 프로세스 확인 및 삭제 명령어 (0) | 2017.01.23 |
Ubuntu 작업 표시 줄 위치 변경 명령어 (0) | 2017.01.18 |
Sun Grid Engine(SGE) 명령어로 작업 실행 (0) | 2017.01.17 |
Ubuntu 리눅스 Chrome 설치 중 라이브러리 장애 처리 (0) | 2017.01.15 |
@kogun82 :: Ctrl+C&V 로 하는 프로그래밍
Korean BioInformation Center(KOBIC) Korea Research Institute of Bioscience & Biotechnology Address: #52 Eoeun-dong, Yuseong-gu, Deajeon, 305-806, KOREA +82-10-9936-2261 e-mail: kogun82@kribb.re.kr Blog: kogun82.tistory.com Homepage: www.kobic.re.kr
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!