remove a line in files


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting remove a line in files
# 1  
Old 07-14-2009
remove a line in files

Hi

I have 3 files and I want to remove 1 line in each file. This line correposnds to the occurrence of a specific pattern

any idea how to do this in shell?

thx
# 2  
Old 07-14-2009
sounds like 'sed' would be a good starting point.
what have you tried so far?
# 3  
Old 07-14-2009
Use search, this solutions has told so many times using grep, sed, awk, perl, shell ex. case, ...
No need to use shell, simple commandline using cmd grep is enough:
ex.
grep -v "removedatapattern" infile > resultfile
# 4  
Old 07-14-2009
First make backups of your files.

Does each file have the same pattern? If so,
Code:
sed -i '/PATTERN/d' file1 file2 file3

Now this might remove MULTIPLE lines in each file matching the pattern. If that's unacceptable, you can use awk this way:
Code:
for m in file1 file2 file3; do
   awk 'fixed && /PATTERN/ { fixed=1; next; } { print }' $m .~$m.$$
   mv .~$m.$$ $m
done

There might be a way to do this in sed too.
# 5  
Old 07-14-2009
try:

Code:
perl -i -e ' while(<>) { unless (/pattern/) {print; }} ' file1 file2 ...

Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Ksh: Read line parse characters into variable and remove the line if the date is older than 50 days

I have a test file with the following format, It contains the username_date when the user was locked from the database. $ cat lockedusers.txt TEST1_21062016 TEST2_02122015 TEST3_01032016 TEST4_01042016 I'm writing a ksh script and faced with this difficult scenario for my... (11 Replies)
Discussion started by: humble_learner
11 Replies

2. UNIX for Dummies Questions & Answers

How to remove fields space and append next line to previous line.?

awk 'BEGIN{FS = "Ç"} NR == 1 {p = $0; next} NF > 1 {print p; p = $0} NF <= 1 {p = (p " " $0)} END {print p}' input.txt > output.txt This is what the input data file looks like with broken lines Code: 29863 Ç890000000 Ç543209911 ÇCHNGOHG Ç000000001 Ç055 ... (4 Replies)
Discussion started by: cumeh1624
4 Replies

3. Shell Programming and Scripting

Want to remove a line feed depending on number of tabs in a line

Hi! I have been struggling with a large file that has stray end of line characters. I am working on a Mac (Lion). I mention this only because I have been mucking around with fixing my problem using sed, and I have learned far more than I wanted to know about Unix and Mac eol characters. I... (1 Reply)
Discussion started by: user999991
1 Replies

4. Shell Programming and Scripting

compare files and remove a line from a file if first column is greater than 25

my files are as follows fileA sepearated by tab /t 00 lieferungen 00 attractiop 01 done 02 forness 03 rasp 04 alwaysisng 04 funny 05 done1 fileB funnymou120112 funnymou234470 mou3raspnhdhv rddfgmoudone1438748 so all those record which are greater than 3 and which are not... (4 Replies)
Discussion started by: rajniman
4 Replies

5. UNIX for Advanced & Expert Users

Remove first line from mutiple files

How to remove the first line from multiple files and use it as source to the jobs. Only at the runtime it should remove the first line not in the file . (1 Reply)
Discussion started by: etldeveloper
1 Replies

6. Shell Programming and Scripting

Need to remove improperly formatted fortran output line from files, tried sed

I have been trying to remove some improperly formatted lines of output from fortran code I have been using. The problem is that I have some singularities in the math for some points that causes an incorrectly large value to be reported that exceeds the normal formating set in the code resulting in... (2 Replies)
Discussion started by: gillesc_mac
2 Replies

7. UNIX for Dummies Questions & Answers

Newbye. Help with KSH. Loop in files and remove first line

Hi everybody. Firstly, sorry for doing such a basic questions, but i have never worked with linux shells and at this moment i am trully desperated :d. I have been checkin' another posts of this forum looking for different things for mixing them and get the solution to my problem, but i have not ... (2 Replies)
Discussion started by: bringer
2 Replies

8. Shell Programming and Scripting

Remove '^M' in each line of files

Hi All, Working on AIX 5.3 we need to remove '^M' in each line of files. could anyone please share such an experience would be appreciated. Thanks for your time! Regards, (9 Replies)
Discussion started by: a1_win
9 Replies

9. Shell Programming and Scripting

remove the first line of all files

I want to remove the first line of all files in a directory with .dat extension. Can any one help me on this with a small script. I want the file names to remain same . (8 Replies)
Discussion started by: dineshr85
8 Replies
Login or Register to Ask a Question