Sponsored Content
Top Forums Shell Programming and Scripting SED: match pattern & delete matched lines Post 302097210 by vgersh99 on Wednesday 22nd of November 2006 08:54:39 AM
Old 11-22-2006
The easiest way to find out is to try and to experiment.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

How to delete lines do NOT match a pattern

On Unix, it is easy to get those lines that match a pattern, by grep pattern file or those lines that do not, by grep -v pattern file but I am editing a file on Windows with Ultraedit. Ultraedit support regular expression based search and replace. I can delete all the lines that match a... (1 Reply)
Discussion started by: JumboGeng
1 Replies

2. Shell Programming and Scripting

SED: delete and print the only exact matched pattern

I am really need help with the regular expression in SED. From input file, I need to extract lines that have the port number (sport or dport) as defined. The input file is something like this time=1209515280-1209515340 dst=192.168.133.202 src=208.70.8.23 bytes=2472 proto=6 sport=80 dport=1447... (6 Replies)
Discussion started by: new_buddy
6 Replies

3. Shell Programming and Scripting

Sed to delete exactly match pattern and print them in other file

Hi there, I need help about using sed. Iam using sed to delete and print lines that match the port number as listed in sedfile. I am using -d and -p command for delete match port and print them respectively. However, the output is not synchonize where the total deleted lines is not similar with... (3 Replies)
Discussion started by: new_buddy
3 Replies

4. Shell Programming and Scripting

sed problem - delete all lines until a match on 2 lines

First of all, I know this can be more eassily done with perl or other scripting languages but, that's not the issue. I need this in sed. (or wander if it's possible ) I got a file (trace file to recreate the control file from oracle for the dba boys) which contains some lines another line... (11 Replies)
Discussion started by: plelie2
11 Replies

5. Shell Programming and Scripting

delete block of lines when pattern does not match

I have this input file that I need to remove lines which represents more than 30 days of processing. Input file: On 11/17/2009 at 12:30:00, Program started processing...argc=7 Total number of bytes in file being processed is 390 Message buffer of length=390 was allocated successfully... (1 Reply)
Discussion started by: udelalv
1 Replies

6. Shell Programming and Scripting

Sed delete blank lines upto first pattern match

Hi Im trying to do the following in sed. I want to delete any blank line at the start of a file until it matches a pattern and then stops. for example: Input output: I have got it to work within a range of two patterns with the following: sed '/1/,/pattern/{/^]*$/d}' The... (2 Replies)
Discussion started by: duonut
2 Replies

7. Shell Programming and Scripting

Delete lines and the first pattern between 2 matched patterns

Hi, i need help to delete all the lines between 2 matched patterns and the first pattern must be deleted too. sample as follows: inputfile.txt >kump_1 ........................... ........................... >start_0124 dgfhghgfh fgfdgfh fdgfdh >kump_2 ............................. (7 Replies)
Discussion started by: redse171
7 Replies

8. Shell Programming and Scripting

Sed: how to merge two lines moving matched pattern to end of previous line

hello everyone, im new here, and also programming with awk, sed and grep commands on linux. In my text i have many lines with this config: 1 1 4 3 1 1 2 5 2 2 1 1 1 3 1 2 1 3 1 1 1 2 2 2 5 2 4 1 3 2 1 1 4 1 2 1 1 1 3 2 1 1 5 4 1 3 1 1... (3 Replies)
Discussion started by: satir
3 Replies

9. Shell Programming and Scripting

Delete lines based on pattern match

BASH in Solaris 10 I have a log file like below. Whenever the pattern ORA-39083 is encountered, I want to delete the line which has this pattern and 3 lines below it. $ cat someLogfile.txt ORA-39083: Object type OBJECT_GRANT failed to create with error: ORA-01917: user or role 'CMPA' does... (4 Replies)
Discussion started by: kraljic
4 Replies

10. UNIX for Beginners Questions & Answers

sed script to delete the last word after a last pattern match

Hi Guys , I am having a file as stated below File 1 sa0 -- i_core/i_core_apb/i_afe0_controller/U261/A sa0 -- i_core/i_core_apb/i_afe0_controller/U265/Z sa1 -- i_core/i_core_apb/i_afe0_controller/U265/A sa1 -- i_core/i_core_apb/i_afe0_controller/U268/Z sa1 -- ... (7 Replies)
Discussion started by: kshitij
7 Replies
MAGE::Experiment(3pm)					User Contributed Perl Documentation				     MAGE::Experiment(3pm)

NAME
Bio::MAGE::Experiment - Container module for classes in the MAGE package: Experiment SYNOPSIS
use Bio::MAGE::Experiment; DESCRIPTION
This is a package module that encapsulates a number of classes in the Bio::MAGE hierarchy. These classes belong to the Experiment package of the MAGE-OM object model. CLASSES
The Bio::MAGE::Experiment module contains the following Bio::MAGE classes: o Experiment o ExperimentDesign o ExperimentalFactor o FactorValue CLASS METHODS
@class_list = Bio::MAGE::Experiment::classes(); This method returns a list of non-fully qualified class names (i.e. they do not have 'Bio::MAGE::' as a prefix) in this package. $obj = class->new(%parameters) The "new()" method is the class constructor. Parameters: if given a list of name/value parameters the corresponding slots, attributes, or associations will have their initial values set by the constructor. Return value: It returns a reference to an object of the class. Side effects: It invokes the "initialize()" method if it is defined by the class. @names = class->get_slot_names() The "get_slot_names()" method is used to retrieve the name of all slots defined in a given class. NOTE: the list of names does not include attribute or association names. Return value: A list of the names of all slots defined for this class. Side effects: none @name_list = get_attribute_names() returns the list of attribute data members for this class. @name_list = get_association_names() returns the list of association data members for this class. @class_list = get_superclasses() returns the list of superclasses for this class. @class_list = get_subclasses() returns the list of subclasses for this class. $name = class_name() Returns the full class name for this class. $package_name = package_name() Returns the base package name (i.e. no 'namespace::') of the package that contains this class. %assns = associations() returns the association meta-information in a hash where the keys are the association names and the values are "Association" objects that provide the meta-information for the association. INSTANCE METHODS
$obj_copy = $obj->new() When invoked with an existing object reference and not a class name, the "new()" method acts as a copy constructor - with the new object's initial values set to be those of the existing object. Parameters: No input parameters are used in the copy constructor, the initial values are taken directly from the object to be copied. Return value: It returns a reference to an object of the class. Side effects: It invokes the "initialize()" method if it is defined by the class. $obj->set_slots(%parameters) $obj->set_slots(@name_list, @value_list) The "set_slots()" method is used to set a number of slots at the same time. It has two different invocation methods. The first takes a named parameter list, and the second takes two array references. Return value: none Side effects: will call "croak()" if a slot_name is used that the class does not define. @obj_list = $obj->get_slots(@name_list) The "get_slots()" method is used to get the values of a number of slots at the same time. Return value: a list of instance objects Side effects: none $val = $obj->set_slot($name,$val) The "set_slot()" method sets the slot $name to the value $val Return value: the new value of the slot, i.e. $val Side effects: none $val = $obj->get_slot($name) The "get_slot()" method is used to get the values of a number of slots at the same time. Return value: a single slot value, or undef if the slot has not been initialized. Side effects: none $val = $experiment->xml_lists() $inval = $experiment->xml_lists($inval) This is the unified setter/getter method for the xml_lists slot. If $inval is specified, the setter method is invoked, with no parameters, the getter method is invoked. Input parameters: the optional $inval will invoke the setter method. Return value: for both setter and getter the current value of the xml_lists slot Side effects: none Exceptions: none $val = $experiment->tagname() $inval = $experiment->tagname($inval) This is the unified setter/getter method for the tagname slot. If $inval is specified, the setter method is invoked, with no parameters, the getter method is invoked. Input parameters: the optional $inval will invoke the setter method. Return value: for both setter and getter the current value of the tagname slot Side effects: none Exceptions: none $val = $experiment->experiment_list() $inval = $experiment->experiment_list($inval) This is the unified setter/getter method for the experiment_list slot. If $inval is specified, the setter method is invoked, with no parameters, the getter method is invoked. Input parameters: the optional $inval will invoke the setter method. Return value: for both setter and getter the current value of the experiment_list slot Side effects: none Exceptions: none $array_ref = $experiment->getExperiment_list() This method handles the list for the "Bio::MAGE::Experiment::Experiment" class. It returns a reference to an array of the class objects that have been associated with the package instance. This is useful when retrieving data from parsed MAGE-ML file. $experiment->addExperiment(@vals) This method is an interface for adding "Bio::MAGE::Experiment::Experiment" objects to the "experiment_list" list. It is generally used by generic methods such as those in the XMLWriter. Input parameters: the list of values @vals to add to the owner association. NOTE: submitting a single value is permitted. Return value: none Side effects: none Exceptions: will call "croak()" if no input parameters are specified , or if any of the objects in @vals is not a subclass of class "Bio::MAGE::Experiment::Experiment" $experiment->obj2xml($writer) Write out this object, and all sub-objects, as XML using the supplied $writer to actually do the XML formatting. Input parameters: $writer must be an XML writer, e.g. an instance of Bio::MAGE::XML::Writer. It must have methods: write_start_tag(), write_end_tag(), and obj2xml(). Return value: none Side effects: all writing is delegated to the $writer - it's write_start_tag() and write_end_tag() methods are invoked with the appropriate data, and all class sub-objects of the "Bio::MAGE::Experiment" instance will have their obj2xml() methods invoked in turn. By allowing the $writer to do the actual formatting of the output XML, it enables the user to precisely control the format. Exceptions: will call "croak()" if no identifier has been set for the "Bio::MAGE::Experiment" instance. $experiment->register($obj) Store an object for later writing as XML. Input parameters: object to be added to the list of registered objects. Return value: none Side effects: if $obj needs to be stored by this class, a reference will be stored in the correct XML list for this class. Exceptions: none SLOTS, ATTRIBUTES, AND ASSOCIATIONS In the Perl implementation of MAGE-OM classes, there are three types of class data members: "slots", "attributes", and "associations". SLOTS This API uses the term "slot" to indicate a data member of the class that was not present in the UML model and is used for mainly internal purposes - use only if you understand the inner workings of the API. Most often slots are used by generic methods such as those in the XML writing and reading classes. Slots are implemented using unified getter/setter methods: $var = $obj->slot_name(); Retrieves the current value of the slot. $new_var = $obj->slot_name($new_var); Store $new_var in the slot - the return value is also $new_var. @names = $obj->get_slot_names() Returns the list of all slots in the class. DATA CHECKING: No data type checking is made for these methods. ATTRIBUTES AND ASSOCIATIONS The terms "attribute" and "association" indicate data members of the class that were specified directly from the UML model. In the Perl implementation of MAGE-OM classes, association and attribute accessors are implemented using three separate methods: get* Retrieves the current value. NOTE: For associations, if the association has list cardinality, an array reference is returned. DATA CHECKING: Ensure that no argument is provided. set* Sets the current value, replacing any existing value. NOTE: For associations, if the association has list cardinality, the argument must be an array reference. Because of this, you probably should be using the add* methods. DATA CHECKING: For attributes, ensure that a single value is provided as the argument. For associations, if the association has list cardinality, ensure that the argument is a reference to an array of instances of the correct MAGE-OM class, otherwise ensure that there is a single argument of the correct MAGE-OM class. add* NOTE: Only present in associations with list cardinality. Appends a list of objects to any values that may already be stored in the association. DATA CHECKING: Ensure that all arguments are of the correct MAGE-OM class. GENERIC METHODS The unified base class of all MAGE-OM classes, "Bio::MAGE::Base", provides a set of generic methods that will operate on slots, attributes, and associations: $val = $obj->get_slot($name) @list_ref = $obj->get_slots(@name_list); $val = $obj->set_slot($name,$val) $obj->set_slots(%parameters) $obj->set_slots(@name_list, @value_list) See elsewhere in this page for a detailed description of these methods. BUGS
Please send bug reports to the project mailing list: (mged-mage 'at' lists 'dot' sf 'dot' net) AUTHOR
Jason E. Stewart (jasons 'at' cpan 'dot' org) SEE ALSO
perl(1). perl v5.10.1 2006-08-23 MAGE::Experiment(3pm)
All times are GMT -4. The time now is 01:03 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy