sed -rne '/Wed Aug 19 21:34:00/,/Wed Aug 19 21:40:00/ p' logfile.log
The timestamp in the log file in this case was in the following format:
Wed Aug 19 21:39:59 2020
sed -rne '/Wed Aug 19 21:34:00/,/Wed Aug 19 21:40:00/ p' logfile.log
The timestamp in the log file in this case was in the following format:
Wed Aug 19 21:39:59 2020
Leave a Comment