Which command finds regular files larger than 100 MB below the current directory?
find . -type d -size +100M
du . -type f -size +100M
find . -type f -size +100M
find . -type f -size -100M