Technical Beauty — Episode 37
A disk is filling up. Somewhere under /var are thousands of stale log files, scattered across directories nobody remembers creating. The task is dreary and familiar: locate the old ones and clear them. One line does it, and reads almost like an instruction to a colleague:
find /var/log -name '*.log' -mtime +30 -delete
Enter fullscreen mode
Exit fullscreen mode








