Sponsored Content
Full Discussion: search and delete a line
Top Forums Shell Programming and Scripting search and delete a line Post 28922 by Bab00shka on Thursday 26th of September 2002 10:47:00 AM
Old 09-26-2002
Hi Odogbolu98

try

while read line
do
if [ "$line" = "acc" ]
then
echo "acc found and removed"
else
echo $line >> new_LIST_A
fi
done < LIST_A

while read line
do
if [ "$line" = "acc" ]
then
echo "acc found and removed"
else
echo $line >> new_LIST_B
fi
done < LIST_B

You will get new_LIST_A and new_LIST_B without the offending lines!

Hope this helps
Helen Smilie
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Search for by column and delete line

I have a file with thousands of lines. I need to search for a specific value in a specific field and delete the lines that match. example. abcdXX1234567 abcdXY1234567 abcdXX1234567 abcdXX1234567 If there is an XY in position 5 and 6 then remove that line. Any suggestions would... (4 Replies)
Discussion started by: thudak
4 Replies

2. Shell Programming and Scripting

Multile Pattern Search in a same line and delete

HI Gurus, I need to delete a line from a syslog file, if it matches three conditions. Say for ex., if the device name is device.name.com and if it contains the syslog message PAGP-5-PORTFROMSTP in between the time period 00:00:00 to 04:00:00, then the particular line has to be deleted from... (2 Replies)
Discussion started by: sasree76
2 Replies

3. Shell Programming and Scripting

search 2 lines and delete above line

Hi, I've been searching in this forum for the last 4 hours trying to do one thing: search 2 lines and delete the above line. So far I have not be able to find something similar in this forum, so I need help. This is what I'm trying to do. For example, I have a file called file1: file1 word1... (4 Replies)
Discussion started by: shamushamu
4 Replies

4. Shell Programming and Scripting

search string and delete the line

Hi All, I have a file from Mainframe which has one of the lines with so many words... i tried to fold, format to 80 chararcter.. stil did not work. So i have decided to search for a string in that line Ex.FLIGHT PLAN and once if it is found i want to delete the entire line. Please help... (2 Replies)
Discussion started by: digitalrg
2 Replies

5. Shell Programming and Scripting

search for keyword in subsequent lines and delete the second line

I have my data something like this I need to search for the keyword yyyy in the susequent lines and if it is present, delete the second line with keyword. In other words, if a keywords is found in two subsequent lines delete the second line. input data: aaaa bbbbb cccc dddd xxxx... (4 Replies)
Discussion started by: rdhanek
4 Replies

6. Shell Programming and Scripting

Search for a line, delete a string in it

let me start out by saying i have ZERO exp with any kind of scripting, so sorry if this is really basic stuff..... For example, I need to have a script that will search a file and find this line in the file: *.cat;dog;kennel;house;barn;horse;hay;coat hat and remove the "coat" from the... (12 Replies)
Discussion started by: skunky
12 Replies

7. Shell Programming and Scripting

awk delete/remove rest of line on multiple search pattern

Need to remove rest of line after the equals sign on search pattern from the searchfile. Can anybody help. Couldn't find any similar example in the forum: infile: 64_1535: Delm. = 86 var, aaga 64_1535: Fran. = 57 ex. ccc 64_1639: Feb. = 26 (link). def 64_1817: mar. = 3/4. drz ... (7 Replies)
Discussion started by: sdf
7 Replies

8. Homework & Coursework Questions

sed Multiple Pattern search and delete the line

Use and complete the template provided. The entire template must be completed. If you don't, your post may be deleted! 1. The problem statement, all variables and given/known data: I have file which has got the following content sam 123 LD 41 sam 234 kp sam LD 41 kam pu sam LD 61 Now... (1 Reply)
Discussion started by: muchyog
1 Replies

9. UNIX for Dummies Questions & Answers

How to delete blank line/s before and after a search pattern?

Hi, Test file x.txt below. This file is generated by a program that I unfortunately do not have control on how it gets presented/generated. create PACKAGE "XXX_INTERFACE_DEFECT_RPT_TEST" is TYPE refCursor IS REF CURSOR; Function queryRecords ( p_status varchar2, ... ... ... )... (4 Replies)
Discussion started by: newbie_01
4 Replies

10. UNIX for Beginners Questions & Answers

Need help with how to search a file for a variable string and delete that line

Hi, I have a working script. It does what I am intending it to but a bit confused whether the sed part is supposed to be working or not. Further down is the script with the sed part that should have been working but not and the grep -v part which is the workaround that I am using at the... (10 Replies)
Discussion started by: newbie_01
10 Replies
GO::Parsers::base_parser(3pm)				User Contributed Perl Documentation			     GO::Parsers::base_parser(3pm)

NAME
GO::Parsers::base_parser - base class for parsers SYNOPSIS
do not use this class directly; use GO::Parser DESCRIPTION
AUTHOR
show_messages Usage - Returns - Args - normalize_files Usage - @files = $parser->normalize_files(@files) Returns - Args - takes a list of filenames/paths, "glob"s them, uncompresses any compressed files and returns the new file list litemode Usage - $p->litemode(1) Returns - Args - bool when set, parser will only throw the following events: id|name|is_a|relationship|namespace (optimisation for fast parsing) acc2name_h Usage - $n = $p->acc2name_h->{'GO:0003673'} Returns - hashref Args - hashref [optional] gets/sets a hash mapping IDs to names this will be automatically set by an ontology parser a non-ontology parser will use this index to verify the parsed data (see $p->acc_not_found($id), below) acc_not_found Usage - if ($p->acc_not_found($go_id)) { warn("$go_id not known") } Returns - bool Args - acc string uses acc2name_h - if this hash mapping has been created AND the acc is not in the hash, THEN it is considered not found This is useful for non-ontology parsers (xref_parser, go_assoc_parser) to check whether a referenced ID is actually present in the ontology note that if acc2name_h has not been created, then accs cannot be considered not-found, and this will always return 0/false perl v5.14.2 2010-07-24 GO::Parsers::base_parser(3pm)
All times are GMT -4. The time now is 09:55 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy