How to extract latest file by looking at date time stamp from a directory?


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting How to extract latest file by looking at date time stamp from a directory?
# 1  
Old 04-30-2013
How to extract latest file by looking at date time stamp from a directory?

hi,

i have a Archive directory in which files are archived or stored with date and time stamp to prevent over writing.

example:
there are 5 files
Code:
s1.txt
s2.txt
s3.txt
s4.txt
s5.txt

while moving these files to archive directory, date and time stamp is added.
of format `date +%Y%m%d`.`date +%H%M%S%N`
Code:
s1.txt.20130430.1412267000      
s2.txt.20130430.1412261233
s3.txt.20130430.1412261322
s4.txt.20130430.1412263211
s5.txt.20130430.1412263244

i want to extract the latest files which came in the last 5 mins. can any1 help me with a script.

please let me know if you need more clarification

Thanks

Last edited by radoulov; 04-30-2013 at 07:17 AM..
# 2  
Old 04-30-2013
If you simply want to find all the files which arrived in a directory in last 5 minutes or modified in last 5 minutes you can use find.

Code:
 
find . -type f -mmin -5

This User Gave Thanks to vidyadhar85 For This Post:
# 3  
Old 04-30-2013
thanks..

till now this command works fine. will ask again if some problem comes.

but if i want the latest files that came in last 1 hour or last 2 hours. then what i have to write in -mmin parameter?
# 4  
Old 04-30-2013
-mmin evalutes in minutes so you can use either -60 (1 hour) or -120 (2 hour) etc..
# 5  
Old 05-02-2013
Quote:
Originally Posted by vidyadhar85
If you simply want to find all the files which arrived in a directory in last 5 minutes or modified in last 5 minutes you can use find.

Code:
 
find . -type f -mmin -5

can tou explain me the above command?

what does (dot and f) represents?

Is it like dot represents the current directory??
# 6  
Old 05-02-2013
dot - represents current directory
f - regular file
# 7  
Old 05-02-2013
Yes, . means the current directory, and means "find in current directory and subdirectories".

The f is part of "-type f" and means "find regular files".

The -mmin -5 part was covered before.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Change date time stamp of existing file

I have a file hello.txt which was created today (today's date timestamp) I wish to change its date timestamp (access, modified, created) to 1 week old i.e one week from now. uname -a SunOS mymac 5.11 11.2 sun4v sparc sun4v Can you please suggest a easy way to do that ? (12 Replies)
Discussion started by: mohtashims
12 Replies

2. Shell Programming and Scripting

Search Files on a given path based on latest time stamp

find /app/data -name "Availability" - Below is the output now i need to filter based on latest modified timestamp. I know 3 is the latest modified time stamp but i tried different options but only filtering docs and not on headnote..Can any one tell me how to do that.. ... (2 Replies)
Discussion started by: vkiyv05
2 Replies

3. Shell Programming and Scripting

Shell Script | Parse log file after a given date and time stamp

I am developing one script which will take log file name, output file name, date, hour and minute as an argument and based on these inputs, the script will scan and capture all the error(s) that have been triggered from a given time. Example: script should capture all the error after 13:50 on Jan... (2 Replies)
Discussion started by: ROMA3
2 Replies

4. Shell Programming and Scripting

Read latest file name with a date and time and then download from FTP

Hi All, Please help. I have requirement to read the file / folder based on the latest date and download the file and folder. There will be files and folders in the location like 20140630-144422 20140630-144422.csv 20140707-182653 20140707-182653.csv 20140710-183153... (7 Replies)
Discussion started by: Praveen Pandit
7 Replies

5. Shell Programming and Scripting

If(Condition) Rename a file with (Date+Time) Stamp

Hi! Please see our current script: #!/usr/bin/ksh if (egrep "This string is found in the log" /a01/bpm.log) then mailx -s "Error from log" me@email.com, him@email.com </a01/bpm.log fi To the above existing script, we need to add the following change: 1) After finding the string,... (7 Replies)
Discussion started by: atechcorp
7 Replies

6. Shell Programming and Scripting

Set date and time stamp of one file to another

Hi I use "touch -t xxxxxxxx" command to set date/time stamp of a file. My requirement is to read the date/time stamp of a file and apply it to another file. Is there anyway to do it simple instead of manually taking date/stamp of first file? TIA Prvn (2 Replies)
Discussion started by: prvnrk
2 Replies

7. UNIX for Dummies Questions & Answers

ls -ltr for a future date/time stamp file

Hi When i do ls -ltr <file1> then it shows me the date and time of the file if - for whatever reason file has future date/time stamp then ls -ltr is not showing the time, it just shows only date part ... even if time is ahead by 2 hr than current time. suppose a file was copied from INDIA... (3 Replies)
Discussion started by: reldb
3 Replies

8. Shell Programming and Scripting

Extract info from log file and compute using time date stamp

Looking for a shell script or a simple perl script . I am new to scripting and not very good at it . I have 2 directories . One of them holds a text file with list of files in it and the second one is a daily log which shows the file completion time. I need to co-relate both and make a report. ... (0 Replies)
Discussion started by: breez_drew
0 Replies

9. UNIX for Dummies Questions & Answers

Inserting Date&Time Stamp In Existing Log File

I am trying to insert a line with a date stamp in a file that is used to monitor activity in one of our directories. By doing this, I want to grep that file each day and go to the last entry for each time a error occurred and pull all errors generated if any exist. If error exists I want that error... (3 Replies)
Discussion started by: shephardfamily
3 Replies

10. UNIX for Dummies Questions & Answers

File date and time stamp

I have to capture the creation date and time stamp for a file. The ls command doesn't list all the required information. I need year, month, day, hour, minute and second. Any ideas... (1 Reply)
Discussion started by: Xenon
1 Replies
Login or Register to Ask a Question