Sponsored Content
Top Forums Shell Programming and Scripting awk to count start and end keyword in a line Post 302791979 by ux4me on Tuesday 9th of April 2013 01:45:31 PM
Old 04-09-2013
awk to count start and end keyword in a line

Hello fellow awkers and seders:

need to figure out a way to ensure a software deployment has completed by checking its trace file in which I can store the deployment results as follows:

Code:
echo $testvar
===== Summary - Deploy Result - Start ===== ===== Summary - Deploy Result - End ===== ===== Summary - Deploy Result - Start ===== ===== Summary - Deploy Result - End ===== ===== Summary - Deploy Result - Start ===== ===== Summary - Deploy Result - End ===== <and so forth>

logic as follows:
- awk to look for keyword=Start; if found, then look for the keyword=End
- when we have the sequence: Start|End|Start # this indicates deployment is in progress or stuck
- every "Start" keyword has to pair with a subsequent "End" keyword

Would greatly appreciate it if anyone out there can help me crack this brain teaser Smilie

Thanks.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

extract a particular start and end pattern from a line

hi In the foll example the whole text in a single line.... i want to extract text from IPTel to RTCPBase.h. want to use this acrooss the whole file Updated: IPTel\platform\core\include\RTCPBase.h \main\MWS2051_Sablime_Int\1... (7 Replies)
Discussion started by: manish205
7 Replies

2. Shell Programming and Scripting

Line Count and Append it to the end of the file.

Hi, I want to get a Line count of a file and append that at the end of the file. The Line count should not include the Headers : ------------------ COL1,COL2,COL3 123,abc,011 111,abd,0212 Record Count: 2 ------------------- Thanks. (7 Replies)
Discussion started by: smc3
7 Replies

3. Shell Programming and Scripting

String as both start and end anchors in awk

Not sure if the title of this thread makes sense, but hopefully my explanation will. I'm using awk to print some stats from an apache accesslog. I would like to specify the regexp condition where only the two root pages of "index.html" and "/" are counted in my results. What I can't figure out... (3 Replies)
Discussion started by: picassolsus
3 Replies

4. 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

5. Shell Programming and Scripting

End of each line count the values in the file

Hi, How to find the end of character in the file. My requirement should be as below.1 is repeating 1 time ,2 is repeating 3 times... type 1: 1 type 2: 3 type 3: 2 9f680177|20077337258|0|0|0|1000004647916|1 9f680177|20077337258|0|0|0|1000004647916|2 9f680177 20077337258 0 0 0... (5 Replies)
Discussion started by: bmk
5 Replies

6. Shell Programming and Scripting

Remove lines between the start string and end string including start and end string Python

Hi, I am trying to remove lines once a string is found till another string is found including the start string and end string. I want to basically grab all the lines starting with color (closing bracket). PS: The line after the closing bracket for color could be anything (currently 'more').... (1 Reply)
Discussion started by: Dabheeruz
1 Replies

7. Shell Programming and Scripting

Search for a Keyword in file and replace another keyword or add at the end of line

Hi I want to implement something like this: if( keyword1 exists) then check if(keyword2 exists in the same line) then replace keyword 2 with New_Keyword else Add New_Keyword at the end of line end if eg: Check for Keyword JUNGLE and add/replace... (7 Replies)
Discussion started by: dashing201
7 Replies

8. Shell Programming and Scripting

Grep start and end line of each segments in a file

Cat file1 -------- ---------- SCHEMA.TABLE1 insert------- update----- ------------- ---------- SCHEMA.TABLE2 insert------- update----- ----------- ------------ SCHEMA.TABLE3 insert------- update----- ------------ grep -n SCHEMA > header_file2.txt (2 Replies)
Discussion started by: Veera_V
2 Replies

9. Shell Programming and Scripting

Find between lines start and end: awk with bash variables

I have a file as follows: 0 1056 85540 414329 774485 1208487 1657519 2102753 2561259 3037737 3458144 3993019 4417959 4809964 5261890 5798778 6254146 I want to find all lines between a specified start and end tag. (6 Replies)
Discussion started by: jamie_123
6 Replies

10. Shell Programming and Scripting

Printing string from last field of the nth line of file to start (or end) of each line (awk I think)

My file (the output of an experiment) starts off looking like this, _____________________________________________________________ Subjects incorporated to date: 001 Data file started on machine PKSHS260-05CP ********************************************************************** Subject 1,... (9 Replies)
Discussion started by: samonl
9 Replies
any(3erl)						     Erlang Module Definition							 any(3erl)

NAME
any - the corba any type DESCRIPTION
This module contains functions that gives an interface to the CORBA any type. Note that the any interface in orber does not contain a destroy function because the any type is represented as an Erlang record and there- for will be removed by the garbage collector when not in use. The type TC used below describes an IDL type and is a tuple according to the to the Erlang language mapping. The type Any used below is defined as: -record(any, {typecode, value}). where typecode is a TC tuple and value is an Erlang term of the type defined by the typecode field. EXPORTS
create() -> Result create(Typecode, Value) -> Result Types Typecode = TC Value = term() Result = Any The create/0 function creates an empty any record and the create/2 function creates an initialized record. set_typecode(A, Typecode) -> Result Types A = Any Typecode = TC Result = Any This function sets the typecode of A and returns a new any record. get_typecode(A) -> Result Types A = Any Result = TC This function returns the typecode of A . set_value(A, Value) -> Result Types A = Any Value = term() Result = Any This function sets the value of A and returns a new any record. get_value(A) -> Result Types A = Any Result = term() This function returns the value of A . Ericsson AB orber 3.6.20 any(3erl)
All times are GMT -4. The time now is 08:50 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy