cli.fail

Practice this fail.

Which folder is heavy?

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 · Beginner

Using GNU du, report one human-readable total for ./uploads, not a line for every nested directory.

Which folder is heavy?

$ du ./uploads

Hundreds of subdirectories scroll by.

How do you summarize the directory’s disk usage?

3 attempts remaining

Read why this fix works

Which folder is heavy?

du -sh ./uploads

-s requests a summary and -h formats sizes for reading. Disk usage is allocated storage, which can differ from the sum of apparent file lengths.

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

Copy your result