Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wp-youtube-lyte domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/wordpress/wp-includes/functions.php on line 6114

Notice: Function _load_textdomain_just_in_time was called incorrectly. Translation loading for the wordpress-seo domain was triggered too early. This is usually an indicator for some code in the plugin or theme running too early. Translations should be loaded at the init action or later. Please see Debugging in WordPress for more information. (This message was added in version 6.7.0.) in /var/www/wordpress/wp-includes/functions.php on line 6114
Linux: List Recently Modified Files - The Grok Shop

Linux: List Recently Modified Files

If you are staring at a lot of files like logs, and trying to look at only stuff that’s changed lately, it can be helpful to filter them out first.  One such way is with the find command. Eg, to to list files modified in the last 24 hours:

 

find . -mtime -1 -print

 

The find command here uses the mtime option to list files modified in the las 24 hours.  The mtime parm is a 24 hour multipler.  Eg, to list files modified in the last 72 hours:

 

find . -mtime -3 -print

 

https://linux.die.net/man/1/find

Sharing is caring!

Leave a Comment

Your email address will not be published. Required fields are marked *