Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Find next line based on pattern, if it is similar pattern skip it Post 302746257 by itkamaraj on Wednesday 19th of December 2012 04:01:34 AM
Old 12-19-2012
Code:
awk -v pat="No Records" '$0~pat{while(getline)if($0!~pat){print $0;exit}}' input.txt

if you are using solaris, then use nawk.
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

find pattern delete line with pattern and line above and line below

I have a file that will sometimes contain a pattern. The pattern is this: W/D FRM CHK 00 I want to find any lines with this pattern, delete those lines, and also delete the line above and the line below. (1 Reply)
Discussion started by: nickg
1 Replies

2. Shell Programming and Scripting

find pattern, delete line with pattern and line above and line below

I have a file that will sometimes contain a pattern. The pattern is this: FRM CHK 0000 I want to find any lines with this pattern, delete those lines, and also delete the line above and the line below. (4 Replies)
Discussion started by: nickg
4 Replies

3. Shell Programming and Scripting

sed: Find start of pattern and extract text to end of line, including the pattern

This is my first post, please be nice. I have tried to google and read different tutorials. The task at hand is: Input file input.txt (example) abc123defhij-E-1234jslo 456ujs-W-abXjklp From this file the task is to grep the -E- and -W- strings that are unique and write a new file... (5 Replies)
Discussion started by: TestTomas
5 Replies

4. Shell Programming and Scripting

Print a pattern between the xml tags based on a search pattern

Hi all, I am trying to extract the values ( text between the xml tags) based on the Order Number. here is the sample input <?xml version="1.0" encoding="UTF-8"?> <NJCustomer> <Header> <MessageIdentifier>Y504173382</MessageIdentifier> ... (13 Replies)
Discussion started by: oky
13 Replies

5. Shell Programming and Scripting

Grep the word from pattern line and update in subsequent lines till next pattern line reached

Hi, I have got the below requirement. please suggest. I have a file like, Processing Item is: /data/ing/cfg2/abc.txt /data/ing/cfg3/bgc.txt Processing Item is: /data/cmd/for2/ght.txt /data/kernal/config.klgt.txt I want to process the above file to get the output file like, ... (5 Replies)
Discussion started by: rbalaj16
5 Replies

6. Shell Programming and Scripting

To find ls of similar pattern files in a directory by passing the variable.

Hi, I have file in my $datadir as below :- SAT_1.txt SAT_2.txt BAT_UD.lst BAT_DD1.lst DUTT_1.txt DUTT_la.txt Expected result :- should get all the above file in $<Filename>_file.lst Below is my code :- for i in SAT BAT DUTT do touch a.lst cd $datadir (1 Reply)
Discussion started by: satishmallidi
1 Replies

7. Shell Programming and Scripting

Splitting textfile based on pattern and name new file after pattern

Hi there, I am pretty new to those things, so I couldn't figure out how to solve this, and if it is actually that easy. just found that awk could help:(. so i have a textfile with strings and numbers (originally copy pasted from word, therefore some empty cells) in the following structure: SC... (9 Replies)
Discussion started by: luja
9 Replies

8. Shell Programming and Scripting

sed -- Find pattern -- print remainder -- plus lines up to pattern -- Minus pattern

The intended result should be : PDF converters 'empty line' gpdftext and pdftotext?xml version="1.0"?> xml:space="preserve"><note-content version="0.1" xmlns:/tomboy/link" xmlns:size="http://beatniksoftware.com/tomboy/size">PDF converters gpdftext and pdftotext</note-content>... (9 Replies)
Discussion started by: Klasform
9 Replies

9. Shell Programming and Scripting

awk to combine lines from line with pattern match to a line that ends in a pattern

I am trying to combine lines with these conditions: 1. First line starts with text of "libname VALUE db2 datasrc" where VALUE can be any text. 2. If condition1 is met then continue to combine lines through a line that ends with a semicolon. 3. Ignore case when matching patterns and remove any... (5 Replies)
Discussion started by: Wes Kem
5 Replies

10. UNIX for Beginners Questions & Answers

Reading a file line by line and print required lines based on pattern

Hi All, i want to write a shell script read below file line by line and want to exclude the lines which contains empty value for MOUNTPOINT field. i am using centos 7 Operating system. want to read below file. # cat /tmp/d5 NAME="/dev/sda" TYPE="disk" SIZE="60G" OWNER="root"... (4 Replies)
Discussion started by: balu1234
4 Replies
doc::lua-oocairo-pattern(3)				       Lua OO Cairo binding				       doc::lua-oocairo-pattern(3)

Name
       lua-oocairo-pattern - Cairo pattern objects

Introduction
       A pattern object is any one of several things that can be used as the source for a Cairo context, defining what colours and transparencies
       will be used for drawing.  These objects can be created explicitly with the various "pattern_create_*" functions in the module table (see
       lua-oocairo(3) for details), or implicitly by calling methods like "cr:set_source_rgb()" on a context object (see lua-oocairo-context(3)).

       Pattern objects can be compared with the "==" operator.	This will compare the identity of the objects, so different Lua objects which
       refer to the same "cairo_pattern_t" will compare as equal.

Methods
       pat:add_color_stop_rgb (offset, r, g, b)
	   Add a new colour stop to a gradient (either linear or radial, it doesn't matter).  The offset is a number from zero (the start of the
	   line or the first circle of the gradient) to one (the end of the line or the second circle).  The colour values must also be numbers
	   from zero to one.  The alpha level is set to fully transparent.

	   This will throw an exception if called on a pattern which isn't a gradient.

       pat:add_color_stop_rgba (offset, r, g, b, a)
	   Same as "pat:add_color_stop_rgb()" above, but the alpha value can be set to less than one to give some transparency to the gradient.
	   This can be used for gradients which fade away into nothing for example.

       pat:get_color_stops ()
	   Returns the color stops defined on a linear or radial gradient.  Throws an exception if called on any other type of pattern.

	   The return value will be a table, an array with one entry per color stop.  Each entry will be a table containing five numbers, in the
	   following order: offset, red, green, blue, alpha.

       pat:get_extend ()
	   Return the current method of extending the pattern beyond its limits.  The return value will be one of the strings accepted by the
	   "pat:set_extend()" method.

       pat:get_filter ()
	   Return the current filter method, which will be one of the strings accepted by the "pat:set_filter()" method.

       pat:get_linear_points ()
	   Return the start and end points of a linear gradient as four numbers.  Throws an exception if called on any other type of pattern.

       pat:get_matrix ()
	   Return the current transformation matrix used for the pattern.  See lua-oocairo-matrix(3).

       pat:get_radial_circles ()
	   Return the start and end circles of a radial gradient as six numbers.  Throws an exception if called on any other type of pattern.

       pat:get_rgba ()
	   Return the colour value and alpha level for a solid colour pattern.	Throws an exception for any other type of pattern.  The return
	   values will be four numbers, in the following order: red, green, blue, alpha.

       pat:get_surface ()
	   Return the surface object (see lua-oocairo-surface(3)) used for a surface pattern.  Throws an exception for any other kind of pattern.

       pat:get_type ()
	   Returns a string indicating what kind of pattern object this is.  The return value will be one of the following:

	   linear
	   radial
	   solid
	   surface
       pat:set_extend (extendtype)
	   Set the way in which the pattern should be extended beyond its defined limits.  The argument must be one of the following strings:

	   none
	       Everything outside the area defined by the pattern is fully transparent.

	   repeat
	       Pattern tiled by endlessly repeating it.

	   reflect
	       Pattern tiled by reflecting it at its edges.

	   pad Whatever is at the edge of the pattern is extended outwards.

       pat:set_filter (filtertype)
	   Set the filter method used for picking colours from the pattern when it is being used to render something.  The argument must be one of
	   the following strings:

	   fast
	       Fast interpolation that is likely to be low quality in some cases (but probably OK for a smooth gradient).

	   good
	       Reasonably good quality interpolation.

	   best
	       The highest quality interpolation available, but likely very slow.

	   nearest
	       Pick colour of nearest pixel.

	   bilinear
	       Interpolate between pixels.

	   gaussian
	       Gaussian blur, but this isn't implemented yet.

       pat:set_matrix (matrix)
	   Set the transformation matrix used for the pattern, as a table of six numbers.  See lua-oocairo-matrix(3).

1.4								    2011-05-18					       doc::lua-oocairo-pattern(3)
All times are GMT -4. The time now is 06:05 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy