The UNIX and Linux Forums  

Go Back   The UNIX and Linux Forums > Top Forums > Shell Programming and Scripting
.
google unix.com



Shell Programming and Scripting Post questions about KSH, CSH, SH, BASH, PERL, PHP, SED, AWK and OTHER shell scripts and shell scripting languages here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Delete files older than 3 months.(read date from the name of the file) bhagat.singh-j Shell Programming and Scripting 3 07-15-2008 03:14 AM
Find 3 months old log files and remove cvdev SUN Solaris 13 05-22-2008 01:38 PM
Delete database table based on months using script. Maverick79 UNIX for Advanced & Expert Users 0 08-30-2007 02:27 AM
deleting files with dates 3 months ago godalle UNIX for Dummies Questions & Answers 3 11-08-2005 02:03 AM
Listing files older than 2 months pbekal Shell Programming and Scripting 3 01-17-2002 01:12 PM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Rate Thread Display Modes
  #1 (permalink)  
Old 08-29-2008
Registered User
 

Join Date: Aug 2008
Posts: 4
Delete 6 months old files

Hi,

Iam trying to delete 6 months old files.
Iam using the following script

-ctime +190 -type f -exec echo rm {} \;
Iam getting an error saying -ctime not found.


Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 08-29-2008
Moderator
 

Join Date: Feb 2007
Posts: 3,549
Code:
-ctime +190 -type f -exec echo rm {} \;
These are options of the find command, it should be something like:

Code:
find /your/path/ -ctime +190 -type f -exec rm {} \;
Try the command first without -exec rm {} \; to be shure you have the right output.

Regards
Reply With Quote
  #3 (permalink)  
Old 08-29-2008
Registered User
 

Join Date: Aug 2008
Posts: 4
Delete 6 monhs old data

Thanks,

I tried with the command given by you.Its working.

Can u please tell me the steps in shell scripts for removing the file after every 6 months auomatically.
Reply With Quote
  #4 (permalink)  
Old 09-02-2008
Moderator
 

Join Date: Feb 2007
Posts: 3,549
You can run this command with cron job, a link to a useful thread of Perderabo:

cron and crontab

Regards
Reply With Quote
  #5 (permalink)  
Old 09-04-2008
Registered User
 

Join Date: Aug 2008
Posts: 4
Thanks,

Actually I am very new to Unix so please tell in which directory shall I create this cron and what exension should I give
Reply With Quote
  #6 (permalink)  
Old 09-04-2008
Moderator
 

Join Date: Feb 2007
Posts: 3,549
There are a lot of tutorials regarding cronjobs on the net, Google for cronjobs.

Regards
Reply With Quote
  #7 (permalink)  
Old 09-10-2008
Registered User
 

Join Date: Aug 2008
Posts: 4
Hi

I want a shell command to create a text file
Reply With Quote
Google The UNIX and Linux Forums
Reply

Bookmarks

Tags
None

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes Rate This Thread
Rate This Thread:




All times are GMT -4. The time now is 07:51 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
vBCredits v1.4 Copyright ©2007 - 2008, PixelFX Studios
The UNIX and Linux Forums Content Copyright ©1993-2009. All Rights Reserved.Ad Management by RedTyger

Content Relevant URLs by vBSEO 3.2.0

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66