deletions of files


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting deletions of files
# 1  
Old 07-28-2011
deletions of files

Hello,

In our server we have lots of files which like below

-rw-r----- 1 l828117 ACETPR 15043140 Jul 26 13:40 log.20110620_17
-rw-r----- 1 l828117 ACETPR 1529288 Jul 26 13:47 log.20110620_22
-rw-r----- 1 l828117 ACETPR 14964229 Jul 26 14:12 log.20110621_17
-rw-r----- 1 l828117 ACETPR 23051253 Jul 26 14:12 log.20110621_16
-rw-r----- 1 l828117 ACETPR 22737151 Jul 26 14:22 log.20110623_12
-rw-r----- 1 l828117 ACETPR 36870964 Jul 26 14:22 log.20110623_11
-rw-r----- 1 l828117 ACETPR 45527565 Jul 26 15:42 log.20110624_09
-rw-r----- 1 l828117 ACETPR 4502054 Jul 26 15:48 log.20110624_09.gz

from the above case i have to delete all the files except the file which zipped

Please help me on this.


Regards
Thelak
# 2  
Old 07-28-2011
Try:
Code:
find . -type f ! -name "*.gz" -exec rm -f {} \;

# 3  
Old 07-28-2011
Hi,
Thats great

But in the case if i have files like below
-rw-r----- 1 l828117 ACETPR 15043140 Jul 26 13:40 log.20110620_17
-rw-r----- 1 l828117 ACETPR 1529288 Jul 26 13:47 log.20110620_22
-rw-r----- 1 l828117 ACETPR 14964229 Jul 26 14:12 log.20110621_17
-rw-r----- 1 l828117 ACETPR 23051253 Jul 26 14:12 log.20110621_16
-rw-r----- 1 l828117 ACETPR 22737151 Jul 26 14:22 log.20110623_12
-rw-r----- 1 l828117 ACETPR 36870964 Jul 26 14:22 log.20110623_11
-rw-r----- 1 l828117 ACETPR 45527565 Jul 26 15:42 log.20110624_09
and i have to delete all files except files ( log.20110624_09,log.20110623_11) in this case
what shud be the case

Pls

regards
Thelak
# 4  
Old 07-28-2011
Code:
find . -type f ! -name "log.20110624_09" ! -name "log.20110623_11" -exec rm -f {} \;

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

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Automate splitting of files , scp files as each split completes and combine files on target server

i use the split command to split a one terabyte backup file into 10 chunks of 100 GB each. The files are split one after the other. While the files is being split, I will like to scp the files one after the other as soon as the previous one completes, from server A to Server B. Then on server B ,... (2 Replies)
Discussion started by: malaika
2 Replies

2. Shell Programming and Scripting

Shell script for field wise record count for different Files .csv files

Hi, Very good wishes to all! Please help to provide the shell script for generating the record counts in filed wise from the .csv file My question: Source file: Field1 Field2 Field3 abc 12f sLm 1234 hjd 12d Hyd 34 Chn My target file should generate the .csv file with the... (14 Replies)
Discussion started by: Kirands
14 Replies

3. Shell Programming and Scripting

Append string to all the files inside a directory excluding subdirectories and .zip files

Hii, Could someone help me to append string to the starting of all the filenames inside a directory but it should exclude .zip files and subdirectories. Eg. file1: test1.log file2: test2.log file3 test.zip After running the script file1: string_test1.log file2: string_test2.log file3:... (4 Replies)
Discussion started by: Ravi Kishore
4 Replies

4. Shell Programming and Scripting

need a shell script to extract the files from source file and check whether those files existonserve

Hi, I am new to shell scripting.Please help me on this.I am using solaris 10 OS and shell i am using is # echo $0 -sh My requirement is i have source file say makefile.I need to extract files with extensions (.c |.cxx |.h |.hxx |.sc) from the makefile.after doing so i need to check whether... (13 Replies)
Discussion started by: muraliinfy04
13 Replies

5. UNIX for Dummies Questions & Answers

write a program in c in unix that display the files(includ sub-direc and files within) in a sorted

the sorting is based on name of file, file size modification time stamps o f file it should dislay the output in the following format "." and ".." enteries should be ignored please give some idea how to do it (1 Reply)
Discussion started by: pappu kumar jha
1 Replies

6. Shell Programming and Scripting

How to extract data from indexed files (ISAM files) maintained in an unix server.

Hi, Could someone please assist on a quick way of How to extract data from indexed files (ISAM files) maintained in an UNIX(AIX) server.The file data needs to be extracted in flat text file or CSV or excel format . Usually we have programs in microfocus COBOL to extract data, but would like... (2 Replies)
Discussion started by: devina
2 Replies

7. Shell Programming and Scripting

How to retrieve all the linked script files/ctl files/sql files?

Hi I am going to migrate our datawarehouse system from HP Tru 64 Unix to the Red Hat Linux. Inside the box, it is running around 40 cron jobs; inside each cron job, it is calling other shell script files, and the shell script files may again call other shell script files or ctl files(for... (1 Reply)
Discussion started by: franksubramania
1 Replies

8. Shell Programming and Scripting

Multiple line deletions with sed ???

Hi, I'm trying to delete multiple lines following a line that matches a pattern. The pattern will appear several times in a file. So when i encounter that pattern in a line, i have to delete that line plus the next 4 lines. Something similar to what grep does grep -A5 'pattern' filename.... (1 Reply)
Discussion started by: drkm_4_frm
1 Replies
Login or Register to Ask a Question