I have one file with below entry. There are multiple entries, but for sample I used just three lines.
my requirment is to create a script by which it will pull only those entries which modification time is greater than 2 weeks (or 15 days). if I run script today, it will compare date from today and pull entriies which modification time is greater than 2 weeks.
Is there any command or combination of commands which can be used for this activity?
Input
Login = user1
Modification Time = July 27, 2015 4:57:55 AM EDT
Login = user2
Modification Time = June 24, 2015 5:39:23 AM EDT
Login = user3
Modification Time = Aug 5, 2015 4:53:53 AM EDT
Required Output
Login = user1
Modification Time = July 27, 2015 4:57:55 AM EDT
Login = user2
Modification Time = June 24, 2015 5:39:23 AM EDT
Below is Output of date command in my server
> date
Mon Aug 17 03:46:31 EDT 2015
