Find the file from 15 days ago


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Find the file from 15 days ago
# 1  
Old 03-02-2007
Find the file from 15 days ago

How can I get difference date between today and 15 days ago and all filename is was created before 15 days ago?

It has to be korn shell script.

Thanks.
# 2  
Old 03-02-2007
Code:
#!/bin/ksh

cd /PATH/to/files
touch somefile
ls -rt *.log | tail -1 | read newfile
touch_value=$(perl -e '
	$mtime=(stat $ARGV[0])[9];
	$mtime = $mtime - (86400*15);
	($sec,$min,$hour,$mday,$mon,$year,$wday,
					 $yday,$isdst)
					   = localtime($mtime);
	 printf "%d%02d%02d%02d%02d\n", $year+1900, $month+1, $day+1, $hour, $min;
			 ' $newfile )
touch -t $touch_value touchfile
find . ! -newer touchfile -print

edit - mistake - used a file not today's date

Last edited by jim mcnamara; 03-02-2007 at 01:09 PM..
# 3  
Old 03-03-2007
Quote:
Originally Posted by YoungBlood
How can I get difference date between today and 15 days ago and all filename is was created before 15 days ago?

It has to be korn shell script.

Thanks.
The creation time of files is not stored on *nix systems. You can use the time the file was last modified:

Code:
find . -mtime +15 -print

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Get a given date and subtract it to 5 days ago

Hi all, I have been researching to obtain SSL certification expiry for most of our webistes. For some cases, some hosts where not directly accessible so i finally got a solution working with curl using my proxy. This lists the expiry date which i'm finally looking for. # curl --proxy... (4 Replies)
Discussion started by: nms
4 Replies

2. UNIX for Beginners Questions & Answers

How to find a file that's modified more than 2 days ago but less than 5 days ago?

How to find a file that's modified more than 2 days ago but was modified less than 5 days ago by use of any Linux utility ? (4 Replies)
Discussion started by: abdulbadii
4 Replies

3. Shell Programming and Scripting

Find a string in file 5 days ago

Hi, I need to grep for a string "Color Yellow" in all log files dated 5 days back until today's date . So, as today is 20 Dec i need to find in all logs from 16th dec to 20 dec. Also, i need ls -ltre output for the files that have the "Collor Yellow" string. Below is my OS: ... (1 Reply)
Discussion started by: mohtashims
1 Replies

4. UNIX for Advanced & Expert Users

N days ago

Hi, the following gives today $(date '+%d%m%y') For example 210111 for today (21 of january 2011). How can I have n days ego ? For example 160111 for 5 days ego ? thank you. (3 Replies)
Discussion started by: big123456
3 Replies

5. Shell Programming and Scripting

Find unix file created how many days ago?

i want to find unix file created how many days ago? (4 Replies)
Discussion started by: utoptas
4 Replies

6. Shell Programming and Scripting

Date within a timeframe 2 days ago

How could I using the following example, change it to show 2 days ago within the same time frame 0600 AM to 0600 AM let foo=`date "+(1%H-106)*60+1%M-100"` bar=foo+1440 find . -mmin +$foo -mmin -$bar | tr -s '/','-' '^' | cut -f2,3 -d"^" | tr -s '^' ' ' | Please use code tags (7 Replies)
Discussion started by: freddie999
7 Replies

7. Shell Programming and Scripting

date for two days or 3 days ago

i need a script that can tell me the date 2 days ago or 3 days ago. please help (7 Replies)
Discussion started by: tomjones
7 Replies

8. UNIX for Dummies Questions & Answers

file was created before 15 days ago.

How can I get difference date between today and 15 days ago and all filename is was created before 15 days ago? It has to be korn shell script. Thanks. (1 Reply)
Discussion started by: YoungBlood
1 Replies

9. Shell Programming and Scripting

Function 7 days ago

Please tell me how can I wirte a function to return the date 7 days ago by using calendar command? :confused: (2 Replies)
Discussion started by: LAY
2 Replies

10. UNIX for Dummies Questions & Answers

Deleting files created before two days ago

Dear All: I want to build a shell that delete files created two or more days ago ... I think it could be built using a special command with ls or grep, I'd apreciate any help from you guys I have a lot of log files from november, december, january and this tool will help me a lot The files... (3 Replies)
Discussion started by: josecollantes
3 Replies
Login or Register to Ask a Question