Deprecated: Function jetpack_form_register_pattern is deprecated since version jetpack-13.4! Use Automattic\Jetpack\Forms\ContactForm\Util::register_pattern instead. in /home1/bryon64093/public_html/wp-includes/functions.php on line 6078

Warning: Cannot modify header information - headers already sent by (output started at /home1/bryon64093/public_html/wp-includes/functions.php:6078) in /home1/bryon64093/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/bryon64093/public_html/wp-includes/functions.php:6078) in /home1/bryon64093/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/bryon64093/public_html/wp-includes/functions.php:6078) in /home1/bryon64093/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/bryon64093/public_html/wp-includes/functions.php:6078) in /home1/bryon64093/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/bryon64093/public_html/wp-includes/functions.php:6078) in /home1/bryon64093/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/bryon64093/public_html/wp-includes/functions.php:6078) in /home1/bryon64093/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/bryon64093/public_html/wp-includes/functions.php:6078) in /home1/bryon64093/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home1/bryon64093/public_html/wp-includes/functions.php:6078) in /home1/bryon64093/public_html/wp-includes/rest-api/class-wp-rest-server.php on line 1831
{"id":253,"date":"2019-08-02T17:22:50","date_gmt":"2019-08-02T22:22:50","guid":{"rendered":"http:\/\/bryonfreeman.com\/?p=253"},"modified":"2019-08-02T17:22:50","modified_gmt":"2019-08-02T22:22:50","slug":"find-unix-file-by-date-or-time","status":"publish","type":"post","link":"http:\/\/bryonfreeman.com\/2019\/08\/02\/find-unix-file-by-date-or-time\/","title":{"rendered":"Find Unix File by Date or Time"},"content":{"rendered":"\n

I needed to find all files in my Unix directory that were created within a certain timeframe.<\/p>\n\n\n\n

Here’s how to find all that were created on a set date:<\/p>\n\n\n\n

find -type f -name “*” -newermt “2019-07-01” ! -newermt “2019-07-02” -ls<\/p>\n\n\n\n

Here’s how to find within a time frame:

find -type f -name “*” -newermt “2019-07-01 00:00:00” ! -newermt “2019-07-01 08:00:00” -ls<\/p>\n\n\n\n

It finds all files “newer than” the first value, but then excludes any files that are “newer than” the second value.<\/p>\n","protected":false},"excerpt":{"rendered":"

I needed to find all files in my Unix directory that were created within a certain timeframe. Here’s how to find all that were created on a set date: find -type f -name “*” -newermt “2019-07-01” ! -newermt “2019-07-02” -ls Here’s how to find within a time frame: find -type f -name “*” -newermt “2019-07-01 … <\/p>\n