![]() |
|
|
|
|
|||||||
| Forums | Portal | Register | Forum Rules | FAQ | Contribute | Members List | Arcade | Search | Today's Posts | Mark Forums Read |
| Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts here. |
|
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| search by modified date | kotasateesh | Shell Programming and Scripting | 4 | 06-24-2008 06:59 AM |
| greping date in a file | ali560045 | Shell Programming and Scripting | 3 | 02-20-2008 04:30 AM |
| compare files in the system with last modified date | bsandeep_80 | Linux | 6 | 01-14-2008 09:56 PM |
| Last Modified Date | cengiz | Shell Programming and Scripting | 12 | 06-27-2005 11:05 PM |
| How do I get the last modified date of a file? | akpopa | UNIX for Dummies Questions & Answers | 2 | 08-29-2001 12:08 PM |
|
|
Submit Tools | LinkBack | Thread Tools | Display Modes |
|
#1
|
||||
|
||||
|
greping certain modified date
i have a k shell script that grep less than certain modified date
------------------------------------------------- #!/bin/ksh for i in * do day=`ls -ltr | grep $i | tr -s " " | cut -d " " -f6-7 | awk 'substr($0,7,4)substr($0,1,5)substr($0,11)<"Feb 1"' ` echo $day done ------------------------------------------------------------------- if suppose i want to grep only those date less than Feb 1 2007,how to put this logic in ? also the above script shows me only the o/p as Dec 25 dec 24 i have jan files also,but it is not showing up help me Last edited by ali560045; 02-08-2008 at 04:17 AM. |
| Forum Sponsor | ||
|
|
|
#2
|
|||
|
|||
|
From your use of the ls command, it looks like you are trying to find files whose date is earlier than Feb 1, 2007.
Why not just use the find command with the appropriate options? |
|
#3
|
||||
|
||||
|
i really not an expert in unix shell.....
so basically can u tell me in r best possible way how to use find command here. help me in this Last edited by ali560045; 02-11-2008 at 12:44 AM. |
||||
| Google The UNIX and Linux Forums |
| Thread Tools | |
| Display Modes | |
|
|