Deleting the oldest file in a directory


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting Deleting the oldest file in a directory
# 1  
Old 12-14-2009
Deleting the oldest file in a directory

Hey! I have found similar posts both here and on other sites regarding this, but I cannot seem to get my script to work. I want to delete the oldest file in a test directory if there are more than two files. My script is currently:

Code:
#!/bin/bash

MEPATH=/usr/local/bin/test

FILECOUNT=`ls $MEPATH | wc -l`;
if [ $FILECOUNT > 2 ]
then
        cd "$MEPATH" && ls -tr | head -n 1 | xargs rm -f;
        echo "Removed oldest file...";
else
        echo "There were not more than two files, nothing to remove";
fi

When I run the script, it removes the oldest file regardless of whether or not there are more than two files, and places an empty file called "2" in the directory. Any ideas on how to fix this? Thanks.
# 2  
Old 12-14-2009
Modify the below lines and change the comp operator

Code:
FILECOUNT=`ls -1 $MEPATH | wc -l`;

# 3  
Old 12-14-2009
Your problem is this line:
Code:
if [ $FILECOUNT > 2 ]

To the shell it means: test ([]) the variable FILECOUNT for existence and if it has a value, and redirect any output to the file named '2' (> 2). If you're using the single bracket form of the tests, you'll have to use
  • -gt instead of >
  • -lt instead of <
  • -ge instead of >=
  • -le instead of <=
  • -ne instead of !=

You can get a list of all test operators by looking at the man page of test.

---------- Post updated at 09:26 ---------- Previous update was at 09:21 ----------

@dennis.jacob: the parameter '-1' to ls won't change anything. If ls detects that output does not go to a terminal it automatically switches to single-column mode. You can easily test that by running
Code:
ls | cat

in any directory.
# 4  
Old 12-14-2009
Bug

Thanks pludi; this fixed the problem. I forgot about operators for [] versus something like [[]]. Smilie
# 5  
Old 12-14-2009
Data

Quote:
Originally Posted by pludi
Your problem is this line:
Code:
if [ $FILECOUNT > 2 ]

To the shell it means: test ([]) the variable FILECOUNT for existence and if it has a value, and redirect any output to the file named '2' (> 2). If you're using the single bracket form of the tests, you'll have to use
  • -gt instead of >
  • -lt instead of <
  • -ge instead of >=
  • -le instead of <=
  • -ne instead of !=
You can get a list of all test operators by looking at the man page of test.

---------- Post updated at 09:26 ---------- Previous update was at 09:21 ----------

@dennis.jacob: the parameter '-1' to ls won't change anything. If ls detects that output does not go to a terminal it automatically switches to single-column mode. You can easily test that by running
Code:
ls | cat

in any directory.
Yes pludi, Its my mistake. Thank you for pointing that.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Bash to select oldest folder in directory and write to log

In the bash below the oldest folder in a directory is selected. If there are 3folders in the directory /home/cmccabe/Desktop/NGS/test and nothing is done to them (ie. no files deleted, renamed) then the bash correctly identifies f1 as the oldest. However, if something is done to the folder then... (4 Replies)
Discussion started by: cmccabe
4 Replies

2. Shell Programming and Scripting

Bash to select oldest folder in directory automatically and log process

The `bash` below uses the oldest folder in the specified directory and logs it. The goes though an analysis process and creates a log. My problem is that if there are 3 folders in the directory folder1,folder2,folder3, the bash is using folder2 for the analysis eventhough folder1 is the oldest... (0 Replies)
Discussion started by: cmccabe
0 Replies

3. UNIX and Linux Applications

Finding the oldest file in a directory without ls

I am trying to determine the oldest and most recent files in a huge directory. I am using an ls -tr statement outside my find statement. The directory is too big and I am getting an "arg list too long" error. Is there something I can put in my find statement that doesn't create a list to... (2 Replies)
Discussion started by: hiyofjord
2 Replies

4. Shell Programming and Scripting

Finding the oldest file in a particular directory

Hi all, I am a newbie to scripting and I need your help regarding finding the oldest file in a particular directory. My intention is to remove that oldest file. Are there any options available with the "find" command to do this.. Thanks in advance for your help Pavan (4 Replies)
Discussion started by: pavan_movva
4 Replies

5. Shell Programming and Scripting

Find Oldest file in a directory tree

This might just be one command. Any1 having the solution? Thanks, Rahul. (25 Replies)
Discussion started by: rahulrathod
25 Replies

6. Shell Programming and Scripting

Deleting the file only to all the directory and sub directory

I need the unix command or shell script to delete all the file in current directory and sub directory. (7 Replies)
Discussion started by: kingganesh04
7 Replies

7. Shell Programming and Scripting

Setting Variable to oldest file in a directory

I am using a bash script to perform some automated maintenance on files in a directory. When I run the script using $sh -x script.sh <directory> the script works fine. It sets the variable to the oldest file, and continues on. However when I run the script like this $./script.sh <directory>, it... (5 Replies)
Discussion started by: spaceherpe61
5 Replies

8. Shell Programming and Scripting

how to grep the oldest file in a directory

Hi, Please help me out I want to grep the oldest file in a directory, could I use "ls" command? and how? thanx in advance (1 Reply)
Discussion started by: ericaworld
1 Replies

9. Shell Programming and Scripting

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 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... (2 Replies)
Discussion started by: pavan_movva
2 Replies

10. UNIX for Dummies Questions & Answers

Oldest File In A Directory

I'm writing a script to find the oldest file in a directory. I know this can be done by using ls -rt | tail -1 but these are rather large directories and that can be somewhat slow since the script will be running constantly. Are there any other ways to do this that would be faster? I looked to... (2 Replies)
Discussion started by: bergerj3
2 Replies
Login or Register to Ask a Question