cli.fail

Practice this fail.

What changed this hour?

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 ./logs modified less than 60 minutes ago. Do not change them.

What changed this hour?

$ ls ./logs

Subdirectories hide the recent files.

How do you find regular files modified within the last hour?

3 attempts remaining

Read why this fix works

What changed this hour?

find ./logs -type f -mmin -60

GNU find -mmin measures modification age in minutes. The minus prefix means less than the specified count; -type f restricts results to regular files.

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

Copy your result