Sponsored Content
Top Forums Shell Programming and Scripting Print lines between two strings multiple occurencies (with sed, awk, or grep) Post 302595376 by theclem35 on Friday 3rd of February 2012 01:24:40 AM
Old 02-03-2012
Thank you so much Smilie
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to print only lines in between two strings using awk

Hi, I want to print only lines in between two strings and not the strings using awk. Eg: OUTPUT top 2 bottom 1 left 0 right 0 page 66 END I want to print into a new file only top 2 bottom 1 left 0... (4 Replies)
Discussion started by: jisha
4 Replies

2. UNIX for Dummies Questions & Answers

print multiple lines with awk

Hi everyone! I'm not new to Unix, but I've never used awk before. I tried to look up this information on several sites and forums, I also looked in the documentation but I haven't found a solution yet. I would like to print the previous 3 lines before and the following 4 lines after the... (6 Replies)
Discussion started by: djcsabus
6 Replies

3. Shell Programming and Scripting

How to get lines started with matched strings using sed or grep for loop?

I have a huge file and want to separate it into several subsets. The file looks like: C1 C2 C3 C4 ... (variable names) 1 .... 2 .... 3 .... : 22 .... 23 .... I want to separate the huge file using the column 1, which has numbers from 1 to 23 (but there are different amount of... (8 Replies)
Discussion started by: AMBER
8 Replies

4. Shell Programming and Scripting

print multiple lines using the grep command.

Hi All, Please find my piece of code below. I am trying to grep the word SUCCESS from $LOGFILE and storing in the grepvar variable. And i am placing that variable in a file. Now if i open the file, i can see the four lines but not in seperate four line s but in a paragraph. If am mailing that log... (8 Replies)
Discussion started by: intiraju
8 Replies

5. UNIX for Dummies Questions & Answers

best method of replacing multiple strings in multiple files - sed or awk? most simple preferred :)

Hi guys, say I have a few files in a directory (58 text files or somthing) each one contains mulitple strings that I wish to replace with other strings so in these 58 files I'm looking for say the following strings: JAM (replace with BUTTER) BREAD (replace with CRACKER) SCOOP (replace... (19 Replies)
Discussion started by: rich@ardz
19 Replies

6. UNIX for Dummies Questions & Answers

grep command to find multiple strings in multiple lines in a file.

I want to search files (basically .cc files) in /xx folder and subfolders. Those files (*.cc files) must contain #include "header.h" AND x() function. I am writing it another way to make it clear, I wanna list of *.cc files that have 'header.h' & 'x()'. They must have two strings, header.h... (2 Replies)
Discussion started by: ritikaSharma
2 Replies

7. Shell Programming and Scripting

Sed or Awk for lines between two strings multiple times and keep the last one

Hi, I am trying to get lines between the last occurrences of two patterns. I have files that have several occurrences of “Standard” and “Visual”. I will like to get the lines between “Standard” and “Visual” but I only want to retain only the last one e.g. Standard Some words Some words Some... (4 Replies)
Discussion started by: damanidada
4 Replies

8. Shell Programming and Scripting

How to print the lines between the pattern using awk/grep/sed?

Hi, I need a help to search a pattern and print the multiple lines between them. Input file: Tue May 29 12:30:33 EDT 2012:threadWebContainer : 357:com.travimp.hotelierlinks.abba.service.RequestHandler.requestService(String, ITICSDataSet): hotelCancelReservation request: ... (4 Replies)
Discussion started by: aroragaurav.84
4 Replies

9. UNIX for Beginners Questions & Answers

How to find=grep or maybe sed/awk for multiple lines of text?

Hi, I am running the following: PASS="username/password" sqlplus -s << EOF | grep -v "^$" $PASS set feedback off set heading off set termout off select name from v\$database ; exit EOF Which gives ERROR: ORA-28002: the password will expire within 5 days PSMP1 (1 Reply)
Discussion started by: newbie_01
1 Replies

10. Shell Programming and Scripting

awk or sed or grep filter a line and/or between strings

Hi, I have multiple files on a directory with the following content: blahblah blahblah hostname server1 blahblah blahblah ---BEGIN--- aaa bbb ccc ddd ---END--- blahblah blahblah blahblah I would like to filter all the files with awk or sed or something else so I can get below... (6 Replies)
Discussion started by: bayupw
6 Replies
docstrip_util(n)					     Literate programming tool						  docstrip_util(n)

__________________________________________________________________________________________________________________________________________________

NAME
docstrip_util - Docstrip-related utilities SYNOPSIS
package require Tcl 8.4 package require docstrip::util ?1.2? docstrip::util::ddt2man text docstrip::util::guards subcmd text docstrip::util::thefile filename ?option value ...? _________________________________________________________________ DESCRIPTION
The docstrip::util package is meant for collecting various utility procedures that may be useful for developers who make use of the doc- strip package in some projects. It is separate from the main package to avoid overhead for end-users. COMMANDS
docstrip::util::ddt2man text The ddt2man command reformats text from the general docstrip format to doctools ".man" format (Tcl Markup Language for Manpages). The different line types are treated as follows: comment and metacomment lines The '%' and '%%' prefixes are removed, the rest of the text is kept as it is. empty lines These are kept as they are. (Effectively this means that they will count as comment lines after a comment line and as code lines after a code line.) code lines example_begin and example_end commands are placed at the beginning and end of every block of consecutive code lines. Brackets in a code line are converted to lb and rb commands. verbatim guards These are processed as usual, so they do not show up in the result but every line in a verbatim block is treated as a code line. other guards These are treated as code lines, except that the actual guard is emphasised. At the time of writing, no project has employed doctools markup in master source files, so experience of what works well is not available. A source file could however look as follows % [manpage_begin gcd n 1.0] % [moddesc {Greatest Common Divisor}] % [require gcd [opt 1.0]] % [description] % % [list_begin definitions] % [call [cmd gcd] [arg a] [arg b]] % The [cmd gcd] procedure takes two arguments [arg a] and [arg b] which % must be integers and returns their greatest common divisor. proc gcd {a b} { % The first step is to take the absolute values of the arguments. % This relieves us of having to worry about how signs will be treated % by the remainder operation. set a [expr {abs($a)}] set b [expr {abs($b)}] % The next line does all of Euclid's algorithm! We can make do % without a temporary variable, since $a is substituted before the % [lb]set a $b[rb] and thus continues to hold a reference to the % "old" value of [var a]. while {$b>0} { set b [expr { $a % [set a $b] }] } % In Tcl 8.3 we might want to use [cmd set] instead of [cmd return] % to get the slight advantage of byte-compilation. %<tcl83> set a %<!tcl83> return $a } % [list_end] % % [manpage_end] If the above text is (suitably unindented and) fed through docstrip::util::ddt2man then the result will be a syntactically correct doctools manpage, even though its purpose is a bit different. It is suggested that master source code files with doctools markup are given the suffix ".ddt", hence the "ddt" in ddt2man. docstrip::util::guards subcmd text The guards command returns information (mostly of a statistical nature) about the ordinary docstrip guards that occur in the text. The subcmd selects what is returned. counts List the guard expression terminals with counts. The format of the return value is a dictionary which maps the terminal name to the number of occurencies of it in the file. exprcount List the guard expressions with counts. The format of the return value is a dictionary which maps the expression to the num- ber of occurencies of it in the file. exprerr List the syntactically incorrect guard expressions (e.g. parentheses do not match, or a terminal is missing). The return value is a list, with the elements in no particular order. expressions List the guard expressions. The return value is a list, with the elements in no particular order. exprmods List the guard expressions with modifiers. The format of the return value is a dictionary where each index is a guard expres- sion and each entry is a string with one character for every guard line that has this expression. The characters in the entry specify what modifier was used in that line: +, -, *, /, or (for guard without modifier:) space. This is the most primitive form of the information gathered by guards. names List the guard expression terminals. The return value is a list, with the elements in no particular order. rotten List the malformed guard lines (this does not include lines where only the expression is malformed, though). The format of the return value is a dictionary which maps line numbers to their contents. docstrip::util::thefile filename ?option value ...? The thefile command opens the file filename, reads it to end, closes it, and returns the contents. The option-value pairs are passed on to fconfigure to configure the open file channel before anything is read from it. SEE ALSO
docstrip, doctools, doctools_fmt KEYWORDS
CATEGORY
Documentation tools COPYRIGHT
Copyright (c) 2003-2005 Lars Hellstrom <Lars dot Hellstrom at residenset dot net> docstrip 1.2 docstrip_util(n)
All times are GMT -4. The time now is 02:05 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy