현재 디렉터리 아래에서 100MB보다 큰 일반 파일을 찾는 명령은 무엇인가요?
du . -type f -size +100M
find . -type f -size +100M
find . -type f -size -100M
find . -type d -size +100M