Sponsored Content
Top Forums Shell Programming and Scripting Perl : to print the lines between two patterns Post 302814779 by balajesuri on Thursday 30th of May 2013 08:01:30 AM
Old 05-30-2013
Code:
if ( $record =~ /top/ .. $record =~ /tail/ )

This User Gave Thanks to balajesuri For This Post:
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

print lines between two patterns in unix

Detroit Chicago Newyork Battlecreek Jackson Brooklyn How would I print only lines match between Detroit and Brooklyn used awk ? I don't want print Detroit and Brooklyn output should be : Chicago Newyork Battlecreek Jackson Thanks Jhonny (2 Replies)
Discussion started by: jhonnyrip
2 Replies

2. Shell Programming and Scripting

Print lines between two repetitive patterns

Hi users I have one file which has number of occurrence of one pattern examples Adjustmenttype,11 xyz 10 dwe 9 abd 13 def 14 Adjustmenttype,11 xyz 24 dwe 34 abd 35 def 11 nmb 12 Adjustmenttype, not eleven .... ... ... (2 Replies)
Discussion started by: eranmoh
2 Replies

3. Shell Programming and Scripting

Perl print between 2 patterns

I have been unable to find this anywhere; I have a multiline variable, and I want to print the text between two patterns in that variable. So the variable is My real name is not DeadmanAnd I need the output to be this, by printing between "real" and "not" name is or including the two... (10 Replies)
Discussion started by: killer54291
10 Replies

4. Shell Programming and Scripting

print lines between 2 matching patterns

Hi Guys, I have file like below, I want to print all lines between test1231233 to its 10 occurrence(till line 41) test1231233 qwe qwe qweq123 test1231233 qwe qwe qweq23 test1231233 qwe qwe qweq123 test1231233 qwe qwe qweq123131 (3 Replies)
Discussion started by: jagnikam
3 Replies

5. Shell Programming and Scripting

Need to print between patterns AND a few lines before

I need to print out sections (varying numbers of lines) of a file between patterns. That alone is easy enough: sed -n '/START/,/STOP/' I also need the 3 lines BEFORE the start pattern. That alone is easy enough: grep -B3 START But I can't seem to combine the two so that I get everything between the... (2 Replies)
Discussion started by: Finja
2 Replies

6. Shell Programming and Scripting

How to print only lines in between patterns?

Hi, I want to print only lines (green-italic lines) in between first and last strings in column 9. there are different number of lines between each strings. 10 AUGUSTUS exon 4558 4669 . - . 10.g1 10 AUGUSTUS exon 8771 8889 . ... (6 Replies)
Discussion started by: jamo
6 Replies

7. Shell Programming and Scripting

Print all lines between patterns

Hi Gurus, I have a requirement where I need to display all lines between 2 patterns except the line where the first pattern in it. I tried the following command using awk but it is printing all lines except the lines where the 2 patterns exist. awk '/TRANSF_/{ P=1; next } /Busy/ {exit} P'... (9 Replies)
Discussion started by: svajhala
9 Replies

8. Shell Programming and Scripting

Match 2 different patterns and print the lines

Hi, i have been trying to extract multiple lines based on two different patterns as below:- file1 @jkm|kdo|aas012|192.2.3.1 blablbalablablkabblablabla sjfdsakfjladfjefhaghfagfkafagkjsghfalhfk fhajkhfadjkhfalhflaffajkgfajkghfajkhgfkf jahfjkhflkhalfdhfwearhahfl @jkm|sdf|wud08q|168.2.1.3... (8 Replies)
Discussion started by: redse171
8 Replies

9. Shell Programming and Scripting

How to print different multiple lines after two patterns?

Hello, I need to print some lines as explained below, TXT example 1111 2222 3333 4444 5555 6666 7777 8888 6666 9999 1111 2222 3333 4444 5555 (8 Replies)
Discussion started by: liuzhencc
8 Replies

10. UNIX for Beginners Questions & Answers

How to print lines from a files with specific start and end patterns and pick only the last lines?

Hi, I need to print lines which are matching with start pattern "SELECT" and END PATTERN ";" and only select the last "select" statement including the ";" . I have attached sample input file and the desired input should be as: INPUT FORMAT: SELECT ABCD, DEFGH, DFGHJ, JKLMN, AXCVB,... (5 Replies)
Discussion started by: nani2019
5 Replies
PERLUTIL(1)						 Perl Programmers Reference Guide					       PERLUTIL(1)

NAME
perlutil - utilities packaged with the Perl distribution DESCRIPTION
Along with the Perl interpreter itself, the Perl distribution installs a range of utilities on your system. There are also several utili- ties which are used by the Perl distribution itself as part of the install process. This document exists to list all of these utilities, explain what they are for and provide pointers to each module's documentation, if appropriate. DOCUMENTATION perldoc The main interface to Perl's documentation is "perldoc", although if you're reading this, it's more than likely that you've already found it. perldoc will extract and format the documentation from any file in the current directory, any Perl module installed on the system, or any of the standard documentation pages, such as this one. Use "perldoc <name>" to get information on any of the utilities described in this document. pod2man and pod2text If it's run from a terminal, perldoc will usually call pod2man to translate POD (Plain Old Documentation - see perlpod for an explana- tion) into a manpage, and then run man to display it; if man isn't available, pod2text will be used instead and the output piped through your favourite pager. pod2html and pod2latex As well as these two, there are two other converters: pod2html will produce HTML pages from POD, and pod2latex, which produces LaTeX files. pod2usage If you just want to know how to use the utilities described here, pod2usage will just extract the "USAGE" section; some of the utilities will automatically call pod2usage on themselves when you call them with "-help". podselect pod2usage is a special case of podselect, a utility to extract named sections from documents written in POD. For instance, while utili- ties have "USAGE" sections, Perl modules usually have "SYNOPSIS" sections: "podselect -s "SYNOPSIS" ..." will extract this section for a given file. podchecker If you're writing your own documentation in POD, the podchecker utility will look for errors in your markup. splain splain is an interface to perldiag - paste in your error message to it, and it'll explain it for you. roffitall The "roffitall" utility is not installed on your system but lives in the pod/ directory of your Perl source kit; it converts all the documentation from the distribution to *roff format, and produces a typeset PostScript or text file of the whole lot. CONVERTORS To help you convert legacy programs to Perl, we've included three conversion filters: a2p a2p converts awk scripts to Perl programs; for example, "a2p -F:" on the simple awk script "{print $2}" will produce a Perl program based around this code: while (<>) { ($Fld1,$Fld2) = split(/[: ]/, $_, 9999); print $Fld2; } s2p Similarly, s2p converts sed scripts to Perl programs. s2p run on "s/foo/bar" will produce a Perl program based around this: while (<>) { chomp; s/foo/bar/g; print if $printit; } find2perl Finally, find2perl translates "find" commands to Perl equivalents which use the File::Find module. As an example, "find2perl . -user root -perm 4000 -print" produces the following callback subroutine for "File::Find": sub wanted { my ($dev,$ino,$mode,$nlink,$uid,$gid); (($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_)) && $uid == $uid{'root'}) && (($mode & 0777) == 04000); print("$name "); } As well as these filters for converting other languages, the pl2pm utility will help you convert old-style Perl 4 libraries to new-style Perl5 modules. Administration libnetcfg To display and change the libnet configuration run the libnetcfg command. Development There are a set of utilities which help you in developing Perl programs, and in particular, extending Perl with C. perlbug perlbug is the recommended way to report bugs in the perl interpreter itself or any of the standard library modules back to the develop- ers; please read through the documentation for perlbug thoroughly before using it to submit a bug report. h2ph Back before Perl had the XS system for connecting with C libraries, programmers used to get library constants by reading through the C header files. You may still see "require 'syscall.ph'" or similar around - the .ph file should be created by running h2ph on the corre- sponding .h file. See the h2ph documentation for more on how to convert a whole bunch of header files at once. c2ph and pstruct c2ph and pstruct, which are actually the same program but behave differently depending on how they are called, provide another way of getting at C with Perl - they'll convert C structures and union declarations to Perl code. This is deprecated in favour of h2xs these days. h2xs h2xs converts C header files into XS modules, and will try and write as much glue between C libraries and Perl modules as it can. It's also very useful for creating skeletons of pure Perl modules. dprofpp Perl comes with a profiler, the Devel::DProf module. The dprofpp utility analyzes the output of this profiler and tells you which sub- routines are taking up the most run time. See Devel::DProf for more information. perlcc perlcc is the interface to the experimental Perl compiler suite. SEE ALSO perldoc, pod2man, perlpod, pod2html, pod2usage, podselect, podchecker, splain, perldiag, roffitall, a2p, s2p, find2perl, File::Find, pl2pm, perlbug, h2ph, c2ph, h2xs, dprofpp, Devel::DProf, perlcc perl v5.8.0 2003-02-18 PERLUTIL(1)
All times are GMT -4. The time now is 03:51 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy