cli.fail

Practice this fail.

Find the chunky ones.

Linux · Restart as often as you like

Read the error, choose a command, and learn
why it works. Nothing runs on your machine.

Browse all practice ↗

Linux · Intermediate

Using GNU find, recursively list regular files under ./artifacts whose size is greater than 100 MiB using find’s M unit. Do not delete them.

Find the chunky ones.

$ ls -lh ./artifacts

The large files may be nested.

Which command finds regular files larger than the 100 MiB threshold?

3 attempts remaining

Read why this fix works

Find the chunky ones.

find ./artifacts -type f -size +100M

GNU find’s M size unit is 1,048,576 bytes. +100M selects sizes above 100 such units, with find’s unit rounding rules. This command only lists matching files.

Practice rounds do not affect the daily score or local streak. Try today’s challenge, or choose another scenario.

Copy your result