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.
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?
Fixed. By hand.
find ./artifacts -type f -size +100MGNU 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 does not affect your daily score or streak.