×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
On 8/31/2023 1:57 PM, James H. H. Lampert via MIDRANGE-L wrote:
Is there a way to list the objects in an IFS directory, that were
created on or after a specified date?
If you're interested in something from a command line, this works in a
bash shell:
ls -ltr --time-style=long-iso <full or relative path> | awk '$6 >=
"2018-08-01" {print $6,$8}'
Of course this presumes you have awk; I try to keep a full C-style dev
environment on my machine. If you haven't got awk installed, try:
find <full or relative path> -type f -newermt '2023-08-01 00:00:00'
Either of these can have the results piped into a text file for further
processing.
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact
[javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.