How to find the latest file on Unix or Linux


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers How to find the latest file on Unix or Linux
# 1  
Old 11-03-2006
How to find the latest file on Unix or Linux

Please help me out how to identify the latest file in one directory by looking at file's timestamp or datestamp. You can say using system command. Thanks
# 2  
Old 11-03-2006
Code:
cd directory
ls -l -rt | head -1

is one way.
# 3  
Old 11-03-2006
Quote:
Originally Posted by jim mcnamara
Code:
cd directory
ls -l -rt | head -1

is one way.
You would use tail instead of head for the latest file.
# 4  
Old 11-03-2006
Jim, Lazytech:

Thanks very much for your advice. I mean the latest file by timestamp or datestamp. Using head -l or tail -l only list file in the begining or in the end. I don't care the order of the file listing. I want to know how to get or find the latest file based on date or time. Thanks.
# 5  
Old 11-04-2006
Well, if you man ls, you'll see what the switches mean. The -t switch sorts the listing by 'time' so the output is displayed from newest to oldest. The -r switch reverses it so the newest file is at the end of the listing instead of the beginning. And -l gives you the long listing.

Code:
$ ls -lrt
total 178880
-rw-r--r--  1 carlsche  carlsche      2727 13 Jul  2005 badlist
-rwxr-xr-x  1 carlsche  carlsche      1076 13 Jul  2005 scanlist
-rw-r--r--  1 carlsche  carlsche   1428173 22 May 21:25 dirlist.album
-rwxr-xr-x  1 carlsche  carlsche       429 22 May 21:26 dirout
-rw-r--r--  1 carlsche  carlsche   1404661 22 May 21:32 dirlist.song
-rw-r--r--  1 carlsche  carlsche   1404035 22 May 21:33 dirlist.artist
drwxr-xr-x  6 carlsche  carlsche       204 24 Sep 22:18 Previous iTunes Libraries
drwxr-xr-x  3 carlsche  carlsche       102 24 Sep 22:19 Album Artwork
drwxr-xr-x  9 carlsche  carlsche       306 24 Sep 22:40 iTunes Music
-rw-r--r--  1 carlsche  carlsche  42887486 29 Oct 18:32 iTunes Library
-rw-r--r--  1 carlsche  carlsche  44442517 29 Oct 18:32 iTunes Music Library.xml

Carl
# 6  
Old 11-06-2006
Carl:

Thanks for your explanation. It is clear. Question is: if I want to find the latest file (if reversed, it will be last file) to re-name and move to another directory on Linux. What kind of code should I write? Since using ls -lrt |tail -l, it will show a list of the latest file, not the last file. May I write code like this:

ls -lrt |tail -l |mv /directory1/file1 /directory2/file2

Please advise. Thank you so much.
# 7  
Old 11-06-2006
Probably this'd work best:

Code:
$ mv `ls -tr | tail -1` /tmp/newfile

Carl
This User Gave Thanks to BOFH For This Post:
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

To Find Duplicate files using latest in Linux

I have tried the following code and with that i couldnt achieve what i want. #!/usr/bin/bash find ./ -type f \( -iname "*.xml" \) | sort -n > fileList sed -i '/\.\/fileList/d' fileList NAMEOFTHISFILE=$(echo $0|sed -e 's/\/()$*.^|/\\&/g') sed -i "/$NAMEOFTHISFILE/d"... (2 Replies)
Discussion started by: gold2k8
2 Replies

2. UNIX for Dummies Questions & Answers

To find the latest modified file in a directory

I am trying to fetch the latest modified file from a directory using the command find . -type f -exec ls -lt \{\} \+ | head | awk '{print $9}' After the O/P, I get the below mentioned error and the command doesnt terminate at all. find: ls terminated by signal 13 find: ls terminated by... (2 Replies)
Discussion started by: Sree10
2 Replies

3. Shell Programming and Scripting

Find the latest file based on the date in the filename

Hi, We've a list of files that gets created on a weekly basis and it has got a date and time embedded to it. Below are the examples. I want to find out how to get the latest files get the date and time stamp out of it. Files are PQR123.PLL.M989898.201308012254.gpg... (1 Reply)
Discussion started by: rudoraj
1 Replies

4. UNIX for Dummies Questions & Answers

Find the latest file on remote sftp

Hi All, I need your help in finding the latest files in remote sftp and get those files to local server and process them. Please let me know I appreciate your valuable inputs. Thanks raj (7 Replies)
Discussion started by: rajeevm
7 Replies

5. UNIX for Dummies Questions & Answers

Get the latest file from UNIX

Dear Friends, Am very much new to UNIX and this is my first task in UNIX. Can you pls help me with the below problem: i want to get the latest file from unix to mainframes. I did the following remote ls -t $AMR/data01/extract/monthly/source/- AMR_D*""_REC_STAT.dat - > v1 remote... (2 Replies)
Discussion started by: amarpandian
2 Replies

6. Shell Programming and Scripting

How to find the latest file on Unix or Linux (recursive)

Hi all, I need to get the latest file. I have found this command "ls -lrt" that is great but not recursive. Can anyone help? Thanx by advance. (7 Replies)
Discussion started by: 1or2is3
7 Replies

7. Shell Programming and Scripting

How to find the latest modified file from the unix server.

hi Friends, In my directory i have some files. I need to find out latest modified file. Please help me. Sreenu. (2 Replies)
Discussion started by: sreenu80
2 Replies

8. Shell Programming and Scripting

how to use find command to get latest file

Is there a way to use find command to get the latest file and cp it into a certain dir at the same try. example find the latest file and cp to a diff dir. (5 Replies)
Discussion started by: shehzad_m
5 Replies

9. AIX

Unix shell scripting to find latest file having timestamp embedded...

Hi guys, I have a directory in UNIX having files with the below format, i need to pickup the latest file having recent timestamp embedded on it, then need to rename it to a standard file name. Below is the file format: filename_yyyymmdd.csv, i need to pick the latest and move it with the... (2 Replies)
Discussion started by: kaushik25
2 Replies

10. Shell Programming and Scripting

Find and remove all but the latest file

Hi, Would appreciate if someone could help me with the following requirement. Say I have a directory where a file called abc_$timestamp.txt is created couple of times in a day. So this directory would have files like abc_2007-03-28-4-5-7.txt abc_2007-03-28-3-5-7.txt... (4 Replies)
Discussion started by: hyennah
4 Replies
Login or Register to Ask a Question