Find all files other than first two files dates & last file date for month


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users Find all files other than first two files dates & last file date for month
# 1  
Old 04-10-2014
Find all files other than first two files dates & last file date for month

Hi All,
I need to find all files other than first two files dates & last file date for month and month/year wise list.

lets say there are following files in directory
Code:
Mar 19 2012 c.txt
Mar 19 2012 cc.txt
Mar 21 2012 d.txt
Mar 22 2012 f.txt
Mar 24 2012 h.txt
Mar 25 2012 w.txt
 
Feb 12 2012 q.txt
Feb 21 2012 a.txt
Feb 21 2012 aa.txt
Feb 22 2012 s.txt
Feb 23 2012 k.txt
Feb 27 2012 j.txt
 
Mar 19 15:43 c.txt
Mar 21 15:43 d.txt
Mar 22 15:43 f.txt
Mar 24 15:43 h.txt
Mar 25 15:43 w.txt
Mar 25 15:43 ww.txt
 
Feb 12 15:43 q.txt
Feb 21 15:43 a.txt
Feb 22 15:43 s.txt
Feb 23 15:43 k.txt
Feb 27 15:43 j.txt
Feb 27 15:43 jj.txt

output should be:
Code:
for Mar 2012
Mar 22 2012 f.txt
Mar 24 2012 h.txt
 
for Feb 2012
Feb 22 2012 s.txt
Feb 23 2012 k.txt
 
for Mar 2014
Mar 22 15:43 f.txt
Mar 24 15:43 h.txt
 
for Feb 2014
Feb 22 15:43 s.txt
Feb 23 15:43 k.txt


Last edited by Franklin52; 04-11-2014 at 03:37 AM.. Reason: Please use code tags
# 2  
Old 04-10-2014
Please use code tags as required by forum rules!

How about trying to adopt & adapt what you learned from your other tread?
And, your specification is not consistent with your sample output. Where are
Code:
Mar 21 2012 d.txt
Feb 21 2012 aa.txt
Mar 25 15:43 w.txt
Feb 27 15:43 j.txt

?
# 3  
Old 04-11-2014
I did not get what you not understand from above question.

I have clearly mention that first two file dates & last files dates files i dont want in the output list.

rest all files i want. thats it.
# 4  
Old 04-14-2014
My way of seeing things is you know what you dont want : search for them first and create a list with them, then parse the directory excluding the list content

Code:
MONTH=Sep
-rwxr-xr-x    1 vbe      bin             110 Sep  3 2003  tutu.sav
-rwxr-x---    1 vbe      bin              17 Sep  4 2003  tata
-rw-rw-r--    1 vbe      system         7696 Sep 30 2013  bdf_today.130930
n12:/home/vbe $ ll -lrt|grep " Sep "|grep -v -f test.0009|more                                  
-rw-rw-rw-    1 vbe      bin              21 Sep  9 2003  testread.out
-rw-rw-rw-    1 vbe      bin            1940 Sep  9 2003  cutresults
-rwxrw-rw-    1 vbe      bin             237 Sep  9 2003  cuttest
-rw-rw-rw-    1 vbe      bin             101 Sep 17 2003  newterm
-rwxr-xr-x    1 vbe      bin             394 Sep 17 2003  whiletest
-rw-rw-rw-    1 vbe      bin            2920 Sep 17 2003  shell_cpt9
-rw-rw-rw-    1 vbe      bin             121 Sep 18 2003  sendmail_cf.modif
-rw-rw-rw-    1 vbe      bin             626 Sep 18 2003  lvreduce.howto
-rw-rw-rw-    1 vbe      bin            1063 Sep 18 2003  gagatest
-rwxr-xr-x    1 vbe      bin              80 Sep 26 2003  popu
-rwxr-xr-x    1 vbe      bin             718 Sep 30 2003  cpt9test
-rw-rw-rw-    1 vbe      bin              17 Sep 30 2003  errorlog
-rw-rw-rw-    1 vbe      bin             450 Sep 30 2003  usersname
-rw-rw-rw-    1 vbe      bin             128 Sep 14 2004  bufpages.howto
-rw-rw-rw-    1 vbe      bin             136 Sep 27 2004  lup.c
-rwxr-xr-x    1 vbe      bin              92 Sep 27 2004  sh_test3
-rwxr-xr-x    1 vbe      bin              13 Sep 27 2004  sh_test1
-rw-r-----    1 vbe      bin          163448 Sep 28 2004  titi.out
-rw-r--r--    1 vbe      bin          125670 Sep 28 2004  JAVAinfo.out
-rw-rw-rw-    1 vbe      bin             931 Sep 29 2004  mozilla_bug
-rw-rw-rw-    1 vbe      bin            1605 Sep  1 2005  GW_lan_discon.howto
-rw-r--r--    1 vbe      bin            1871 Sep  1 2005  sasperms.logs
-rw-rw-rw-    1 vbe      bin           25940 Sep  2 2005  sasproc_log.log
-rwxr-xr--    1 vbe      bin             321 Sep  7 2005  processor.sh
-rw-rw-rw-    1 vbe      bin              68 Sep  7 2005  node.dat
-rw-rw-rw-    1 vbe      bin             364 Sep  7 2005  node_name_script
-rw-r--r--    1 vbe      bin             136 Sep 12 2005  net_perf_w_glance.howto

# 5  
Old 04-14-2014
So what you dont want: (create list...)
Code:
for i in $(ls -l |awk '{print $6}'|sort|uniq )
do
   echo MONTH=$i
   ls -lrt|grep ^- |grep " $i "|head -2|awk '{print $9}' >>test.0009
   ls -lrt|grep ^- |grep " $i "|tail -1|awk '{print $9}' >>test.0009
done

Then as previous post ( but thats an example...)
# 6  
Old 04-14-2014
Hi Vbe

I have working code with parsing the directory. but it is taking lot of time .
I want faster solution..Any help
# 7  
Old 04-14-2014
Well based on what you said we could not guess the number of files impacted... I would go processing by month so you can do some in parallele ( that means also creating a exclusion list by month)
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 find all files other than last two dates per month and year?

Hi All, lets say there are following files in directory -rwxr-xr-x 1 user userg 1596 Mar 19 2012 a.txt -rwxr-xr-x 1 user userg 1596 Mar 19 2012 b.txt -rwxr-xr-x 1 user userg 1596 Mar 22 2012 c.txt -rwxr-xr-x 1 user userg 1596 Mar 24 2012 d.txt... (16 Replies)
Discussion started by: Makarand Dodmis
16 Replies

2. Shell Programming and Scripting

How to find all files other than first two dates & last date per month and year?

how to find all files other than first two dates & last date per month and year Hi All, lets say there are following files in directory -rwxr-xr-x 1 user userg 1596 Mar 19 2012 a.txt -rwxr-xr-x 1 user userg 1596 Mar 19 2012 b.txt -rwxr-xr-x 1 user userg ... (6 Replies)
Discussion started by: Makarand Dodmis
6 Replies

3. Shell Programming and Scripting

How to find all files for same month and year?

Hi All, I find all files for same month and year lets say there are following files in directory -rwxr-xr-x 1 user userg 1596 Mar 19 2012 c.txt -rwxr-xr-x 1 user userg 1596 Mar 21 2012 d.txt -rwxr-xr-x 1 user userg 1596 Mar 22 2012 f.txt -rwxr-xr-x 1... (8 Replies)
Discussion started by: Makarand Dodmis
8 Replies

4. UNIX for Advanced & Expert Users

How to find last two files for a month?

Hi All, I need to find last two files for the month. lets say there are following files in directory -rwxr-xr-x 1 user userg 1596 Mar 19 15:43 c.txt -rwxr-xr-x 1 user userg 1596 Mar 21 15:43 d.txt -rwxr-xr-x 1 user userg 1596 Mar 22 15:43 f.txt -rwxr-xr-x 1... (14 Replies)
Discussion started by: Makarand Dodmis
14 Replies

5. Shell Programming and Scripting

How to list files that are not first two files date & last file date for every month-year?

Hi All, I need to find all files other than first two files dates & last file date for month and month/year wise list. lets say there are following files in directory Mar 19 2012 c.txt Mar 19 2012 cc.txt Mar 21 2012 d.txt Mar 22 2012 f.txt Mar 24 2012 h.txt Mar 25 2012 w.txt Feb 12... (2 Replies)
Discussion started by: Makarand Dodmis
2 Replies

6. UNIX for Dummies Questions & Answers

Reading the dates from a file & moving the files from a directory

Hi All, I am coding for a requirement where I need to read a file & get the values of SUB_DATE. Once the dates are found, i need to move the files based on these dates from one directory to another. ie, this is how it will be in the file, SUB_DATE = 20120608,20120607,20120606,20120606... (5 Replies)
Discussion started by: dsfreddie
5 Replies

7. Shell Programming and Scripting

How to find the create time of a file if current date is in next month

Hi All, I want to find the time diffrence between currnt time and "abc.txt" file create time. I have solve that but if the abc.txt file created last month then is there any process to find the difftent? Exp: Create time of abc.txt is "Apr 14 06:48" and currect date is "May 17 23:47".... (1 Reply)
Discussion started by: priyankak
1 Replies

8. UNIX for Advanced & Expert Users

find files modified in a specific month

hello i need a way to list files modified in a specific month and move them to a specific directry , i mean somthing like : find . -modifiedtime "May" -print -exec /usr/bin/mv newdirectory thank u (1 Reply)
Discussion started by: omer_ome
1 Replies

9. Solaris

find files modified in a specific month

hello i need a way to list files modified in a specific month and move them to a specific directry , i mean somthing like : find . -modifiedtime "May" -print -exec /usr/bin/mv newdirectory thank u (1 Reply)
Discussion started by: omer_ome
1 Replies

10. Shell Programming and Scripting

Find all files by month

Hi, I am trying to do achieving of files by months. find /test -name \*.* -mtime +30 will give me the result of all modified files after 30 days. But lets say i want to list all files that is modified in last months... what is the command to do it? Thanks! (13 Replies)
Discussion started by: maldini
13 Replies
Login or Register to Ask a Question