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
Find Oldest file in a directory tree rahulrathod Shell Programming and Scripting 24 06-05-2008 03:01 PM
Removing a file from a directory npatel Filesystems, Disks and Memory 5 05-22-2008 07:47 AM
how to grep the oldest file in a directory ericaworld Shell Programming and Scripting 1 05-29-2007 10:24 AM
Finding the oldest file in a particular directory pavan_movva Shell Programming and Scripting 2 10-07-2006 02:17 AM
Oldest File In A Directory bergerj3 UNIX for Dummies Questions & Answers 2 02-27-2002 11:31 AM

Reply
 
Submit Tools LinkBack Thread Tools Display Modes
  #1 (permalink)  
Old 10-10-2006
Registered User
 

Join Date: Oct 2006
Location: India
Posts: 4
Removing the oldest file in a directory

Hi all,

I need your assistance in removing the oldest file in a directory.

I posted the same thread 3 days back and I got the following answer

Code:
ls -1 -t | tail -1 | xargs rm
which is not covering the case when there are directories older than the oldest file.

So, could you please provide an option so that the above command will exclude the directories in the search.

Thanks in advance for your help

Pavan
Reply With Quote
Forum Sponsor
  #2 (permalink)  
Old 10-10-2006
Registered User
 

Join Date: Mar 2006
Location: Bangalore,India
Posts: 1,397
try this
Code:
ls -1 -lt | awk ' /^-/ { print $9}' | tail -1 | xargs rm
Reply With Quote
  #3 (permalink)  
Old 10-10-2006
Registered User
 

Join Date: Oct 2006
Location: India
Posts: 4
Thanks a lot anbu23 for your help!!

Regards

Pavan
Reply With Quote
Google The UNIX and Linux Forums
Reply

Thread Tools
Display Modes




All times are GMT -7. The time now is 01:33 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 Global Fact Book

Content Relevant URLs by vBSEO 3.2.0