how to grep the oldest file under ls command


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting how to grep the oldest file under ls command
# 1  
Old 05-29-2007
how to grep the oldest file under ls command

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
# 2  
Old 05-29-2007
Code:
grep -i pattern `ls -lt | awk '{}END{ print $NF }'`

# 3  
Old 05-29-2007
to Mr Matrix

HI, thanx for replying,
when I use

ls -lt | awk '{}END{ print $NF },

it prompt ">",
seems like it is not a complete command,
do u have any idea why?
# 4  
Old 05-29-2007
To Mr Matrix

sorry, please ignore previous message,
here is the real problem

when I type

ls -lt | awk '{}END{ print $NF }'

it did not return anything, but I do have lots files under that directory
all I want is the oldest one, do u have any idea why I am not getting any result?

thanx
# 5  
Old 05-29-2007
Code:
ls -tr | head -1

Jean-Pierre.
# 6  
Old 05-29-2007
thank u very much, that worked perfectly
# 7  
Old 05-30-2007
Quote:
Originally Posted by ericaworld
sorry, please ignore previous message,
here is the real problem

when I type

ls -lt | awk '{}END{ print $NF }'

it did not return anything, but I do have lots files under that directory
all I want is the oldest one, do u have any idea why I am not getting any result?

thanx

This should work definitely,

try running ls -lt,
the filename from the last line will be displayed.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to tell UNIX to start from the oldest file?

Hello, I have a simple while loopinside the script and I wish to tell unix to start reading from the oldest txt file. So, in case some new txt files are transferred into the same folder, the script will not take into consideration until all older files are completely processed. How may I do this?... (3 Replies)
Discussion started by: baris35
3 Replies

2. UNIX for Dummies Questions & Answers

To delete the oldest files in a file when file count in the folder exceeds 7

Hi All, I need to delete the oldest file in folder when the file count in the folder exceed 6 ( i have a process that puts the source files into this folder ) E.x : Folder : /data/opt/backup 01/01/2012 a.txt 01/02/2012 b.txt ... (1 Reply)
Discussion started by: akshay01987
1 Replies

3. UNIX for Dummies Questions & Answers

Access the oldest file in a dir

I have to move files (one by one) from one dir to another, in such a way that the oldest file should be moved first followed by the latest file. The source dir (from where I am moving files) may contains a minimum of 20K files at any point of time. I am not able to use "ls -ltr" as it throws error... (6 Replies)
Discussion started by: rajesh8s
6 Replies

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

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

6. Shell Programming and Scripting

Finding the oldest file

Hi:- I need help with a script I need to modify: - what's the best/easiest way to find out the oldest file in a directory and then move this file to another directory? Thanks, (5 Replies)
Discussion started by: janet
5 Replies

7. Shell Programming and Scripting

Finding & Moving Oldest File by Parsing/Sorting Date Info in File Names

I'm trying to write a script that will look in an /exports folder for the oldest export file and move it to a /staging folder. "Oldest" in this case is actually determined by date information embedded in the file names themselves. Also, the script should only move a file from /exports to... (6 Replies)
Discussion started by: nikosey
6 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