Files older than 50 days


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers Files older than 50 days
# 1  
Old 07-25-2011
Files older than 50 days

Hi All,

OS :- HP-UX wm5qa B.11.23 U ia64 1119805695 unlimited-user license

I need to search files older than 50 days. I've used following command in order to search desired files, I also discoverd, it's showing today's files as well. Do you have any clue with this ?

Code:
wmqa1> find . -ctime -50 | ls -ltr
total 153667144
drwxr-xr-x   2 orawmq1    dba             96 Jun 15  2006 lost+found
-rw-r--r--   1 orawmq1    dba        1684817920 May 22  2009 exp_icc_schema.dat
-rw-r--r--   1 orawmq1    dba           3439 Dec 20  2010 webmdata_wmqa1_exp.log
-rw-r--r--   1 orawmq1    dba         249856 Dec 20  2010 webmdata_wmqa1_exp.bck
-rw-r--r--   1 orawmq1    dba          86325 Jul 25 03:53 full_wmqa1_exp.log
-rw-r--r--   1 orawmq1    dba        76992369664 Jul 25 03:53 full_wmqa1_exp.bck

hare krishna
# 2  
Old 07-25-2011
Hi,
Try +ctime instead of -ctime
# 3  
Old 07-25-2011
even than.

Code:
wmqa1> find . +ctime -50 | ls -ltr
find: bad option -50
total 153667144
drwxr-xr-x   2 orawmq1    dba             96 Jun 15  2006 lost+found
-rw-r--r--   1 orawmq1    dba        1684817920 May 22  2009 exp_icc_schema.dat
-rw-r--r--   1 orawmq1    dba           3439 Dec 20  2010 webmdata_wmqa1_exp.log
-rw-r--r--   1 orawmq1    dba         249856 Dec 20  2010 webmdata_wmqa1_exp.bck
-rw-r--r--   1 orawmq1    dba          86325 Jul 25 03:53 full_wmqa1_exp.log
-rw-r--r--   1 orawmq1    dba        76992369664 Jul 25 03:53 full_wmqa1_exp.bck

hare krishna
# 4  
Old 07-25-2011
ohh cud u try +mtime instead of +ctime and see if that works
# 5  
Old 07-25-2011
+mtime does not support on this version.

hare krishna
 
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

List files older than 10 days.

Hello all, I want to list the files older than 10 days. Currently am using find ./ -mtime +10 -exec ls -ltr {} \; command. But I want to execute the same command in 16 directories at a time and want an output asking to remove those file? Please help me to design the script. regards, Ajay (3 Replies)
Discussion started by: 02Ajay
3 Replies

2. Shell Programming and Scripting

Remove files older than 2 days.

Hi All, I am new to the scripting and using solaris 10 OS. Please suggest me from the below script which modifications need to be done to delete the files more that 2days older. Current script is deleting existing file. # Remove old explorer runs if needed DIR=`dirname ${EXP_TARGET}` if ... (2 Replies)
Discussion started by: Navkreddy
2 Replies

3. Shell Programming and Scripting

Delete files older than X days.

Hi All, I am using below code to delete files older than 2 days. In case if there are no files, I should log an error saying no files to delete. Please let me know, How I can achive this. find /path/*.xml -mtime +2 Thanks and Regards Nagaraja. (3 Replies)
Discussion started by: Nagaraja Akkiva
3 Replies

4. UNIX for Advanced & Expert Users

find files older than 30 days old

Hello, I have a script which finds files in a directory that are older than 30 days and remove them. The problem is that these files are too many and when i run this command: find * -mtime +30 | xargs rm I run this command inside the directory and it returns the error: /usr/bin/find:... (8 Replies)
Discussion started by: omonoiatis9
8 Replies

5. Shell Programming and Scripting

deleting files older than 7 days

Hi Guys, I am new to unix I am looking for a script to delete files older than 7 days but i also want to exclude certain directories (like arch,log .....) and also some files with extensions ( like .ksh, .ch, ..............) Thanks (1 Reply)
Discussion started by: MAYAMAYA0451
1 Replies

6. Shell Programming and Scripting

delete files more than 15 days older

i have to delete files which are older than 15 days or more except the ones in the directory Current and also *.sh files i have found the command for files 15 days or more older find . -type f -mtime +15 -exec ls -ltr {} \; but how to implement the logic to avoid directory Current and also... (3 Replies)
Discussion started by: ali560045
3 Replies

7. UNIX for Dummies Questions & Answers

Removing files older than 7 days

Script help, I need to delete files that are older than 7 days. I do that automatically but I know that a cron job can do the job for me. Any help is greatly appreciated, as you can see, I am a DOS or WINDOWS guy. Little on UNIX. Thanks (3 Replies)
Discussion started by: texasoeb
3 Replies

8. UNIX for Dummies Questions & Answers

How can I delete files older than 7 days?

I will like to write a script that delete all files that are older than 7 days in a directory and it's subdirectories. Can any one help me out witht the magic command or script? Thanks in advance, Odogboly98:confused: (3 Replies)
Discussion started by: odogbolu98
3 Replies

9. UNIX for Dummies Questions & Answers

delete files older than 7 days

can anyone tell me how I would write a script in ksh on AIX that will delete files in a directory older than 7 days? (1 Reply)
Discussion started by: lesstjm
1 Replies
Login or Register to Ask a Question