{"id":1509,"date":"2016-06-29T17:15:14","date_gmt":"2016-06-29T14:15:14","guid":{"rendered":"http:\/\/www.systemcodegeeks.com\/?p=1509"},"modified":"2016-06-27T17:31:27","modified_gmt":"2016-06-27T14:31:27","slug":"unix-find-files-greater-date","status":"publish","type":"post","link":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/","title":{"rendered":"Unix: Find files greater than date"},"content":{"rendered":"<p>For the latter part of the week I\u2019ve been running some tests against Neo4j which generate a bunch of log files and I wanted to filter those files based on the time they were created to do some further analysis.<\/p>\n<p>This is an example of what the directory listing looks like:<\/p>\n<pre class=\"brush:bash\">$ ls -alh foo\/database-agent-*\r\n-rw-r--r--  1 markneedham  wheel   2.5K 23 Jun 14:00 foo\/database-agent-mac17f73-1-logs-archive-201606231300176.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   8.6K 23 Jun 11:49 foo\/database-agent-mac19b6b-1-logs-archive-201606231049507.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   8.6K 23 Jun 11:49 foo\/database-agent-mac1f427-1-logs-archive-201606231049507.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   2.5K 23 Jun 14:00 foo\/database-agent-mac29389-1-logs-archive-201606231300176.tar.gz\r\n-rw-r--r--  1 markneedham  wheel    11K 23 Jun 13:44 foo\/database-agent-mac3533f-1-logs-archive-201606231244152.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   4.8K 23 Jun 14:00 foo\/database-agent-mac35563-1-logs-archive-201606231300176.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   3.8K 23 Jun 13:44 foo\/database-agent-mac35f7e-1-logs-archive-201606231244165.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   4.8K 23 Jun 14:00 foo\/database-agent-mac40798-1-logs-archive-201606231300176.tar.gz\r\n-rw-r--r--  1 markneedham  wheel    12K 23 Jun 13:44 foo\/database-agent-mac490bf-1-logs-archive-201606231244151.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   2.5K 23 Jun 14:00 foo\/database-agent-mac5f094-1-logs-archive-201606231300189.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   5.8K 23 Jun 14:00 foo\/database-agent-mac636b8-1-logs-archive-201606231300176.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   9.5K 23 Jun 11:49 foo\/database-agent-mac7e165-1-logs-archive-201606231049507.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   2.7K 23 Jun 11:49 foo\/database-agent-macab7f1-1-logs-archive-201606231049507.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   2.8K 23 Jun 13:44 foo\/database-agent-macbb8e1-1-logs-archive-201606231244151.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   3.1K 23 Jun 11:49 foo\/database-agent-macbcbe8-1-logs-archive-201606231049520.tar.gz\r\n-rw-r--r--  1 markneedham  wheel    13K 23 Jun 13:44 foo\/database-agent-macc8177-1-logs-archive-201606231244152.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   3.8K 23 Jun 13:44 foo\/database-agent-maccd92c-1-logs-archive-201606231244151.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   3.9K 23 Jun 13:44 foo\/database-agent-macdf24f-1-logs-archive-201606231244165.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   3.1K 23 Jun 11:49 foo\/database-agent-mace075e-1-logs-archive-201606231049520.tar.gz\r\n-rw-r--r--  1 markneedham  wheel   3.1K 23 Jun 11:49 foo\/database-agent-mace8859-1-logs-archive-201606231049507.tar.gz\r\n<\/pre>\n<p>I wanted to split the files in half so that I could have the ones created before and after 12pm on the 23rd June.<\/p>\n<p>I discovered that this type of filtering is actually <a href=\"http:\/\/serverfault.com\/questions\/122824\/linux-using-find-to-locate-files-older-than-date\">quite easy to do with the \u2018find\u2019 command<\/a>. So if I want to get the files after 12pm I could write the following:<\/p>\n<pre class=\"brush:bash\">$ find foo -name database-agent* -newermt \"Jun 23, 2016 12:00\" -ls\r\n121939705        8 -rw-r--r--    1 markneedham      wheel                2524 23 Jun 14:00 foo\/database-agent-mac17f73-1-logs-archive-201606231300176.tar.gz\r\n121939704        8 -rw-r--r--    1 markneedham      wheel                2511 23 Jun 14:00 foo\/database-agent-mac29389-1-logs-archive-201606231300176.tar.gz\r\n121934591       24 -rw-r--r--    1 markneedham      wheel               11294 23 Jun 13:44 foo\/database-agent-mac3533f-1-logs-archive-201606231244152.tar.gz\r\n121939707       16 -rw-r--r--    1 markneedham      wheel                4878 23 Jun 14:00 foo\/database-agent-mac35563-1-logs-archive-201606231300176.tar.gz\r\n121934612        8 -rw-r--r--    1 markneedham      wheel                3896 23 Jun 13:44 foo\/database-agent-mac35f7e-1-logs-archive-201606231244165.tar.gz\r\n121939708       16 -rw-r--r--    1 markneedham      wheel                4887 23 Jun 14:00 foo\/database-agent-mac40798-1-logs-archive-201606231300176.tar.gz\r\n121934589       24 -rw-r--r--    1 markneedham      wheel               12204 23 Jun 13:44 foo\/database-agent-mac490bf-1-logs-archive-201606231244151.tar.gz\r\n121939720        8 -rw-r--r--    1 markneedham      wheel                2510 23 Jun 14:00 foo\/database-agent-mac5f094-1-logs-archive-201606231300189.tar.gz\r\n121939706       16 -rw-r--r--    1 markneedham      wheel                5912 23 Jun 14:00 foo\/database-agent-mac636b8-1-logs-archive-201606231300176.tar.gz\r\n121934588        8 -rw-r--r--    1 markneedham      wheel                2895 23 Jun 13:44 foo\/database-agent-macbb8e1-1-logs-archive-201606231244151.tar.gz\r\n121934590       32 -rw-r--r--    1 markneedham      wheel               13427 23 Jun 13:44 foo\/database-agent-macc8177-1-logs-archive-201606231244152.tar.gz\r\n121934587        8 -rw-r--r--    1 markneedham      wheel                3882 23 Jun 13:44 foo\/database-agent-maccd92c-1-logs-archive-201606231244151.tar.gz\r\n121934611        8 -rw-r--r--    1 markneedham      wheel                3970 23 Jun 13:44 foo\/database-agent-macdf24f-1-logs-archive-201606231244165.tar.gz<\/pre>\n<p>And to get the ones before 12pm:<\/p>\n<pre class=\"brush:bash\">$ find foo -name database-agent* -not -newermt \"Jun 23, 2016 12:00\" -ls\r\n121879391       24 -rw-r--r--    1 markneedham      wheel                8856 23 Jun 11:49 foo\/database-agent-mac19b6b-1-logs-archive-201606231049507.tar.gz\r\n121879394       24 -rw-r--r--    1 markneedham      wheel                8772 23 Jun 11:49 foo\/database-agent-mac1f427-1-logs-archive-201606231049507.tar.gz\r\n121879390       24 -rw-r--r--    1 markneedham      wheel                9702 23 Jun 11:49 foo\/database-agent-mac7e165-1-logs-archive-201606231049507.tar.gz\r\n121879393        8 -rw-r--r--    1 markneedham      wheel                2812 23 Jun 11:49 foo\/database-agent-macab7f1-1-logs-archive-201606231049507.tar.gz\r\n121879413        8 -rw-r--r--    1 markneedham      wheel                3144 23 Jun 11:49 foo\/database-agent-macbcbe8-1-logs-archive-201606231049520.tar.gz\r\n121879414        8 -rw-r--r--    1 markneedham      wheel                3131 23 Jun 11:49 foo\/database-agent-mace075e-1-logs-archive-201606231049520.tar.gz\r\n121879392        8 -rw-r--r--    1 markneedham      wheel                3130 23 Jun 11:49 foo\/database-agent-mace8859-1-logs-archive-201606231049507.tar.gz<\/pre>\n<p>Or we could even find the ones last modified between 12pm and 2pm:<\/p>\n<pre class=\"brush:bash\">$ find foo -name database-agent* -not -newermt \"Jun 23, 2016 14:00\" -newermt \"Jun 23, 2016 12:00\" -ls\r\n121934591       24 -rw-r--r--    1 markneedham      wheel               11294 23 Jun 13:44 foo\/database-agent-mac3533f-1-logs-archive-201606231244152.tar.gz\r\n121934612        8 -rw-r--r--    1 markneedham      wheel                3896 23 Jun 13:44 foo\/database-agent-mac35f7e-1-logs-archive-201606231244165.tar.gz\r\n121934589       24 -rw-r--r--    1 markneedham      wheel               12204 23 Jun 13:44 foo\/database-agent-mac490bf-1-logs-archive-201606231244151.tar.gz\r\n121934588        8 -rw-r--r--    1 markneedham      wheel                2895 23 Jun 13:44 foo\/database-agent-macbb8e1-1-logs-archive-201606231244151.tar.gz\r\n121934590       32 -rw-r--r--    1 markneedham      wheel               13427 23 Jun 13:44 foo\/database-agent-macc8177-1-logs-archive-201606231244152.tar.gz\r\n121934587        8 -rw-r--r--    1 markneedham      wheel                3882 23 Jun 13:44 foo\/database-agent-maccd92c-1-logs-archive-201606231244151.tar.gz\r\n121934611        8 -rw-r--r--    1 markneedham      wheel                3970 23 Jun 13:44 foo\/database-agent-macdf24f-1-logs-archive-201606231244165.tar.gz<\/pre>\n<p>Or we can filter by relative time e.g. to find the files last modified in the last 1 day, 5 hours:<\/p>\n<pre class=\"brush:bash\">$ find foo -name database-agent* -mtime -1d5h -ls\r\n121939705        8 -rw-r--r--    1 markneedham      wheel                2524 23 Jun 14:00 foo\/database-agent-mac17f73-1-logs-archive-201606231300176.tar.gz\r\n121939704        8 -rw-r--r--    1 markneedham      wheel                2511 23 Jun 14:00 foo\/database-agent-mac29389-1-logs-archive-201606231300176.tar.gz\r\n121934591       24 -rw-r--r--    1 markneedham      wheel               11294 23 Jun 13:44 foo\/database-agent-mac3533f-1-logs-archive-201606231244152.tar.gz\r\n121939707       16 -rw-r--r--    1 markneedham      wheel                4878 23 Jun 14:00 foo\/database-agent-mac35563-1-logs-archive-201606231300176.tar.gz\r\n121934612        8 -rw-r--r--    1 markneedham      wheel                3896 23 Jun 13:44 foo\/database-agent-mac35f7e-1-logs-archive-201606231244165.tar.gz\r\n121939708       16 -rw-r--r--    1 markneedham      wheel                4887 23 Jun 14:00 foo\/database-agent-mac40798-1-logs-archive-201606231300176.tar.gz\r\n121934589       24 -rw-r--r--    1 markneedham      wheel               12204 23 Jun 13:44 foo\/database-agent-mac490bf-1-logs-archive-201606231244151.tar.gz\r\n121939720        8 -rw-r--r--    1 markneedham      wheel                2510 23 Jun 14:00 foo\/database-agent-mac5f094-1-logs-archive-201606231300189.tar.gz\r\n121939706       16 -rw-r--r--    1 markneedham      wheel                5912 23 Jun 14:00 foo\/database-agent-mac636b8-1-logs-archive-201606231300176.tar.gz\r\n121934588        8 -rw-r--r--    1 markneedham      wheel                2895 23 Jun 13:44 foo\/database-agent-macbb8e1-1-logs-archive-201606231244151.tar.gz\r\n121934590       32 -rw-r--r--    1 markneedham      wheel               13427 23 Jun 13:44 foo\/database-agent-macc8177-1-logs-archive-201606231244152.tar.gz\r\n121934587        8 -rw-r--r--    1 markneedham      wheel                3882 23 Jun 13:44 foo\/database-agent-maccd92c-1-logs-archive-201606231244151.tar.gz\r\n121934611        8 -rw-r--r--    1 markneedham      wheel                3970 23 Jun 13:44 foo\/database-agent-macdf24f-1-logs-archive-201606231244165.tar.gz\r\n<\/pre>\n<p>Or the ones modified more than 1 day, 5 hours ago:<\/p>\n<pre class=\"brush:bash\">$ find foo -name database-agent* -mtime +1d5h -ls\r\n121879391       24 -rw-r--r--    1 markneedham      wheel                8856 23 Jun 11:49 foo\/database-agent-mac19b6b-1-logs-archive-201606231049507.tar.gz\r\n121879394       24 -rw-r--r--    1 markneedham      wheel                8772 23 Jun 11:49 foo\/database-agent-mac1f427-1-logs-archive-201606231049507.tar.gz\r\n121879390       24 -rw-r--r--    1 markneedham      wheel                9702 23 Jun 11:49 foo\/database-agent-mac7e165-1-logs-archive-201606231049507.tar.gz\r\n121879393        8 -rw-r--r--    1 markneedham      wheel                2812 23 Jun 11:49 foo\/database-agent-macab7f1-1-logs-archive-201606231049507.tar.gz\r\n121879413        8 -rw-r--r--    1 markneedham      wheel                3144 23 Jun 11:49 foo\/database-agent-macbcbe8-1-logs-archive-201606231049520.tar.gz\r\n121879414        8 -rw-r--r--    1 markneedham      wheel                3131 23 Jun 11:49 foo\/database-agent-mace075e-1-logs-archive-201606231049520.tar.gz\r\n121879392        8 -rw-r--r--    1 markneedham      wheel                3130 23 Jun 11:49 foo\/database-agent-mace8859-1-logs-archive-201606231049507.tar.gz\r\n<\/pre>\n<p>There are lots of other flags you can pass to find but these ones did exactly what I wanted!<\/p>\n<div class=\"attribution\">\n<table>\n<tbody>\n<tr>\n<td><span class=\"reference\">Reference: <\/span><\/td>\n<td><a href=\"http:\/\/www.markhneedham.com\/blog\/2016\/06\/24\/unix-find-files-greater-than-date\/\">Unix: Find files greater than date<\/a> from our <a href=\"http:\/\/www.systemcodegeeks.com\/join-us\/scg\/\">SCG partner<\/a>\u00a0Mark Needham at the <a href=\"http:\/\/www.markhneedham.com\/blog\/\">Mark Needham Blog<\/a> blog.<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>For the latter part of the week I\u2019ve been running some tests against Neo4j which generate a bunch of log files and I wanted to filter those files based on the time they were created to do some further analysis. This is an example of what the directory listing looks like: $ ls -alh foo\/database-agent-* &hellip;<\/p>\n","protected":false},"author":29,"featured_media":201,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[17],"tags":[],"class_list":["post-1509","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-unix"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.5 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Unix: Find files greater than date - System Code Geeks - 2026<\/title>\n<meta name=\"description\" content=\"For the latter part of the week I\u2019ve been running some tests against Neo4j which generate a bunch of log files and I wanted to filter those files based on\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Unix: Find files greater than date - System Code Geeks - 2026\" \/>\n<meta property=\"og:description\" content=\"For the latter part of the week I\u2019ve been running some tests against Neo4j which generate a bunch of log files and I wanted to filter those files based on\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/\" \/>\n<meta property=\"og:site_name\" content=\"System Code Geeks\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/systemcodegeeks\" \/>\n<meta property=\"article:published_time\" content=\"2016-06-29T14:15:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/unix-logo.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"150\" \/>\n\t<meta property=\"og:image:height\" content=\"150\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Mark Needham\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:site\" content=\"@systemcodegeeks\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Mark Needham\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/\"},\"author\":{\"name\":\"Mark Needham\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/ae1c58c8f59ab2d33fc598b0ad933eb4\"},\"headline\":\"Unix: Find files greater than date\",\"datePublished\":\"2016-06-29T14:15:14+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/\"},\"wordCount\":202,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/unix-logo.jpg\",\"articleSection\":[\"Unix\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/\",\"name\":\"Unix: Find files greater than date - System Code Geeks - 2026\",\"isPartOf\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/unix-logo.jpg\",\"datePublished\":\"2016-06-29T14:15:14+00:00\",\"description\":\"For the latter part of the week I\u2019ve been running some tests against Neo4j which generate a bunch of log files and I wanted to filter those files based on\",\"breadcrumb\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#primaryimage\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/unix-logo.jpg\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/unix-logo.jpg\",\"width\":150,\"height\":150},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.systemcodegeeks.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Unix\",\"item\":\"https:\/\/www.systemcodegeeks.com\/category\/unix\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Unix: Find files greater than date\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#website\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"name\":\"System Code Geeks\",\"description\":\"Operating System Developers Resource Center\",\"publisher\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#organization\",\"name\":\"Exelixis Media P.C.\",\"url\":\"https:\/\/www.systemcodegeeks.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"contentUrl\":\"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png\",\"width\":864,\"height\":246,\"caption\":\"Exelixis Media P.C.\"},\"image\":{\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/systemcodegeeks\",\"https:\/\/x.com\/systemcodegeeks\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/ae1c58c8f59ab2d33fc598b0ad933eb4\",\"name\":\"Mark Needham\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5489baed26ce2d932bf951ecfb47afe80bec45d3648c23521d87c83b8f1c3ea9?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5489baed26ce2d932bf951ecfb47afe80bec45d3648c23521d87c83b8f1c3ea9?s=96&d=mm&r=g\",\"caption\":\"Mark Needham\"},\"sameAs\":[\"http:\/\/www.markhneedham.com\/blog\/\"],\"url\":\"https:\/\/www.systemcodegeeks.com\/author\/mark-needham\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Unix: Find files greater than date - System Code Geeks - 2026","description":"For the latter part of the week I\u2019ve been running some tests against Neo4j which generate a bunch of log files and I wanted to filter those files based on","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/","og_locale":"en_US","og_type":"article","og_title":"Unix: Find files greater than date - System Code Geeks - 2026","og_description":"For the latter part of the week I\u2019ve been running some tests against Neo4j which generate a bunch of log files and I wanted to filter those files based on","og_url":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/","og_site_name":"System Code Geeks","article_publisher":"https:\/\/www.facebook.com\/systemcodegeeks","article_published_time":"2016-06-29T14:15:14+00:00","og_image":[{"width":150,"height":150,"url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/unix-logo.jpg","type":"image\/jpeg"}],"author":"Mark Needham","twitter_card":"summary_large_image","twitter_creator":"@systemcodegeeks","twitter_site":"@systemcodegeeks","twitter_misc":{"Written by":"Mark Needham","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#article","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/"},"author":{"name":"Mark Needham","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/ae1c58c8f59ab2d33fc598b0ad933eb4"},"headline":"Unix: Find files greater than date","datePublished":"2016-06-29T14:15:14+00:00","mainEntityOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/"},"wordCount":202,"commentCount":0,"publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/unix-logo.jpg","articleSection":["Unix"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/","url":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/","name":"Unix: Find files greater than date - System Code Geeks - 2026","isPartOf":{"@id":"https:\/\/www.systemcodegeeks.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#primaryimage"},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#primaryimage"},"thumbnailUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/unix-logo.jpg","datePublished":"2016-06-29T14:15:14+00:00","description":"For the latter part of the week I\u2019ve been running some tests against Neo4j which generate a bunch of log files and I wanted to filter those files based on","breadcrumb":{"@id":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#primaryimage","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/unix-logo.jpg","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2016\/01\/unix-logo.jpg","width":150,"height":150},{"@type":"BreadcrumbList","@id":"https:\/\/www.systemcodegeeks.com\/unix\/unix-find-files-greater-date\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.systemcodegeeks.com\/"},{"@type":"ListItem","position":2,"name":"Unix","item":"https:\/\/www.systemcodegeeks.com\/category\/unix\/"},{"@type":"ListItem","position":3,"name":"Unix: Find files greater than date"}]},{"@type":"WebSite","@id":"https:\/\/www.systemcodegeeks.com\/#website","url":"https:\/\/www.systemcodegeeks.com\/","name":"System Code Geeks","description":"Operating System Developers Resource Center","publisher":{"@id":"https:\/\/www.systemcodegeeks.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.systemcodegeeks.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.systemcodegeeks.com\/#organization","name":"Exelixis Media P.C.","url":"https:\/\/www.systemcodegeeks.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","contentUrl":"https:\/\/www.systemcodegeeks.com\/wp-content\/uploads\/2022\/06\/exelixis-logo.png","width":864,"height":246,"caption":"Exelixis Media P.C."},"image":{"@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/systemcodegeeks","https:\/\/x.com\/systemcodegeeks"]},{"@type":"Person","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/ae1c58c8f59ab2d33fc598b0ad933eb4","name":"Mark Needham","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.systemcodegeeks.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/5489baed26ce2d932bf951ecfb47afe80bec45d3648c23521d87c83b8f1c3ea9?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5489baed26ce2d932bf951ecfb47afe80bec45d3648c23521d87c83b8f1c3ea9?s=96&d=mm&r=g","caption":"Mark Needham"},"sameAs":["http:\/\/www.markhneedham.com\/blog\/"],"url":"https:\/\/www.systemcodegeeks.com\/author\/mark-needham\/"}]}},"_links":{"self":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/1509","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/users\/29"}],"replies":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/comments?post=1509"}],"version-history":[{"count":0,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/posts\/1509\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media\/201"}],"wp:attachment":[{"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/media?parent=1509"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/categories?post=1509"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.systemcodegeeks.com\/wp-json\/wp\/v2\/tags?post=1509"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}