Read log file between two dates

I have to read log file between and my question is how to get only the text in the file wich is between two dates using unix commands?
Every line contain date and I want to get the text in the file which dates are equal or bigger that the FROM date and lower or equal than the TO date.
The format of the date is 13/05/23 01:58.
The second date is for an example 13/05/13 07:50.
Example

If X Amount of Time Has Passed Since Post Was Published, Do Something

if ( human_time_diff( get_the_time( ‘U’ ), current_time( ‘timestamp’ ) ) < strtotime( ‘7 days’ ) ) { echo ‘New!’; } I’ve also tried: if ( get_the_date( ‘U’ ) > strtotime( ‘-7 days’ ) ) if ( get_the_date( ‘U’ ) < strtotime( ‘-7 days’ ) ) if ( get_the_date( ‘U’ ) > strtotime( ‘7 days’ ) … Read more

SELECT rows between two datetimes when the range is dynamic

I’m trying to select rows that fall into a certain date range from my database table. The range is determined dynamically by the user. In my database I have a column called “dateAndTime”. It has dates stored into it in this format: 2021-06-01 19:37:00 I’m trying to select the rows with this: function getEventsByDateRange(){ $eventType … Read more