by Devin Yang
(This article was automatically translated.)

Published - 1 year ago ( Updated - 1 year ago )

This function is very easy to use, but be careful, read first and then delete, the wrong directory will cause Die Miserably

View old data created more than 500 minutes ago< /span>

find . -cmin +500

After confirming that there is no problem, add the -delete parameter to delete

find . -cmin +500 -delete

Files whose creation time exceeds 500 minutes can be deleted by adding the -delete parameter. 🫣

Check the files generated within 5 minutes

find . -cmin -5

Or You want to check all files in the directory that have been modified within 10 minutes. (Extra-topic supplement)

find . -mmin -10

Tags: cli linux macos

Devin Yang

Feel free to ask me, if you don't get it.:)

No Comment

Post your comment

Login is required to leave comments

Similar Stories


linux

How rsync automatically allows ssh key fingerprints

When we use ssh to connect to the host for the first time, a fingerprint confirmation of the host key will be displayed. Sometimes use rsync for some automated scheduling, maybe the remote host has changed and needs to be automatically allowed, How to let ssh automatically allow fingerprints to connect without manually pressing yes in interactive mode?

linux

Load the environment variables of .env to the system

Load the environment variables of .env to the system

linux

Remove the Linux Kernel that is not used by the old version on Ubuntu

This page describes how I removed the old version of Linux Kernel taking up space on ubuntu.