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 here.

More UNIX and Linux Forum Topics You Might Find Helpful
Thread Thread Starter Forum Replies Last Post
Unix shell script for finding top ten files of maximum size abhilashnair UNIX for Dummies Questions & Answers 10 02-17-2008 10:50 PM
shell script to transfer files from Unix to Windows knag Shell Programming and Scripting 15 12-05-2006 02:46 PM
shell script for delete old files krishnarao Shell Programming and Scripting 1 07-07-2006 07:21 AM
How To create Flat Files using Unix Shell Script? Aparna_k82 Shell Programming and Scripting 4 02-10-2005 02:49 AM
how to delete empty files in a shell script rpnuge UNIX for Advanced & Expert Users 1 07-11-2002 01:56 PM

Reply
 
Submit Tools LinkBack Thread Tools Search this Thread Display Modes
  #1  
Old 02-02-2006
Registered User
 

Join Date: Feb 2006
Posts: 4
Question How to delete files in UNIX using shell script

Hi,

I have the following task to perform using shell script.

The user will provide a directory name along with a date. The script will delete all the files in the specified directory that was created earlier to that date. Also it should display the number of files that has been deleted.

Please help experts! Thanks in advance!
Reply With Quote
Forum Sponsor
  #2  
Old 02-02-2006
...@...
 

Join Date: Feb 2004
Location: NM
Posts: 4,297
This deletes files in a directory tree that are less than 5 days old, and asks if it is okay to delete each file:

Code:
find /path/to/directory -mtime -5  -ok  rm -f {} \;
You need to do a search on the FAQ here on the ofrums for date arithmetic, so your script can calculcate the number of days to put in the above command, or a coomand like it.
Reply With Quote
  #3  
Old 02-03-2006
Registered User
 

Join Date: Feb 2006
Posts: 4
Thanks for the reply.

Still there is one issue left. How can we determine the number of files it has deleted after we run the script ?
Reply With Quote
  #4  
Old 02-03-2006
Registered User
 

Join Date: Feb 2006
Location: Schenectady, NY
Posts: 130
Piping the previous command into wc

find /path/to/directory -mtime +5 -ok rm -f {} \; | wc -l

will give you a line count.

If you're confident in what you're deleting, and you VERIFY that the directory provided isn't a system directory, you can streamline the command without a prompt. Also, add one more exprssion to make certain you're deleting only FILES:

find /path/to/directory -mtime +5 -type f -print -exec rm -f {} \; 1>/tmp/out
wc -l /tmp/out

The print command displays the file being deleted. I'd recommend saving the output for review. You can then do a line count on the output file.
Reply With Quote
  #5  
Old 02-03-2006
Technorati Master
 

Join Date: Mar 2005
Location: Large scale systems...
Posts: 2,610
else have an illustration as follows,

Code:
delcnt=0
for files in `find /path/to/directory -mtime -5 -print`
do
   echo "Deleting file $file"
   /bin/rm $file
   delcnt=$(($delcnt + 1))
done

echo "deleted $delcnt files"
Reply With Quote
  #6  
Old 03-24-2006
Registered User
 

Join Date: Feb 2006
Posts: 4
Question How to delete files in UNIX using shell script

Hi,

find /path/to/directory -mtime -5 -ok rm -f {} \

is working fine. But there is one more concern. This command deletes all the files in the specified directory along with files in sub-directories also.

The requirement is like, it should delete files that are 5 Days old only in the directory specified and not the subdirectories within it.

Any idea on how to do that?

Thanks in advance
Reply With Quote
  #7  
Old 04-09-2008
Registered User
 

Join Date: Apr 2008
Location: Belgium
Posts: 1
Adding -maxdepth 1 would do the trick, this way the find command only searches 1 level deep in the directory structure.

The complete command looks like this :

find /path/to/directory -mtime -5 -maxdepth 1 -ok rm -f {} \

Edit: I noticed this is an old thread, but I wanted to add a solution for completeness and to help people who would stumble upon this thread in the future.

Last edited by ruleant; 04-09-2008 at 01:50 AM. Reason: reaction to later post
Reply With Quote
Google The UNIX and Linux Forums
Reply

Tags
mtime

Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes




All times are GMT -7. The time now is 10:36 PM.


Powered by: vBulletin, Copyright ©2000 - 2006, Jelsoft Enterprises Limited.
The UNIX and Linux Forums Content Copyright ©1993-2008. All Rights Reserved.Ad Management by RedTyger Visit The Complex Event Processing Blog

Content Relevant URLs by vBSEO 3.2.0