Sponsored Content
Top Forums Shell Programming and Scripting Search in a set of lines using perl Post 302412851 by deindorfer on Tuesday 13th of April 2010 05:32:09 PM
Old 04-13-2010
Scanning Blocks of Error Messages: Perl

Code:
#! /usr/bin/perl

use strict;
use warnings;

open ( F, "yourfile.txt" ) || die "$!\n";
my ( $state, $blocknum, $errnum );

while (<F>) {

    if ( /^(.*error\:.+)$/ ) { $state->{$blocknum}->{++$errnum} = $1; }
    if ( /MAKING/ ) { ++$blocknum; $errnum = 0; }

}

close F;

for my $block ( keys %{$state} ) {

    printf "MODULE %d\n", $block;

    for my $err ( keys %{$state->{$block}} ) {
        printf "%d: %s\n", $err, $state->{$block}->{$err}
    }

}

The Output header is not quite as you requested, but all the data is there. This should give you a good place to start.

HTH
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Perl: Search for string on line then search and replace text

Hi All, I have a file that I need to be able to find a pattern match on a line, search that line for a text pattern, and replace that text. An example of 4 lines in my file is: 1. MatchText_randomNumberOfText moreData ReplaceMe moreData 2. MatchText_randomNumberOfText moreData moreData... (4 Replies)
Discussion started by: Crypto
4 Replies

2. Shell Programming and Scripting

Perl to Search through next lines

I have log file that I need to extract time difference occurance when two events happend, between first occurance of TV and when W_NO happend. also read the value=, below example...I can only read the next line but not able to seach all the next lines untill i see W_NO.. Thanks for your help.... (6 Replies)
Discussion started by: bataf
6 Replies

3. Shell Programming and Scripting

search and replace, when found, delete multiple lines, add new set of lines?

hey guys, I tried searching but most 'search and replace' questions are related to one liners. Say I have a file to be replaced that has the following: $ cat testing.txt TESTING AAA BBB CCC DDD EEE FFF GGG HHH ENDTESTING This is the input file: (3 Replies)
Discussion started by: DeuceLee
3 Replies

4. Linux

Perl program to print previous set of lines once a pattern is matched

Hi all, I have a text data file. My aim here is to find line called *FIELD* AV for every record and print lines after that till *FIELD* RF. But here I want first 3 to four lines for very record as well. FIELD AV is some where in between for very record. SO I am not sure how to retrieve lines in... (2 Replies)
Discussion started by: kaav06
2 Replies

5. Shell Programming and Scripting

Search and swap multiple lines in file using Perl

Hi all, I have a vcd file with a bunch of lines containing an array, like this $var wire 1 b a $end $var wire 1 c a $end $var wire 1 d a $end $var wire 1 e a $end $var wire 1 f b $end $var wire 1 g b $end $var wire 1 h b $end $var wire 1 i b $end I want it like this: $var wire 1 e a... (12 Replies)
Discussion started by: veerabahu
12 Replies

6. Shell Programming and Scripting

Perl - use search keywords from array and search a file and print 3rd field when matched

Hi , I have been trying to write a perl script to do this job. But i am not able to achieve the desired result. Below is my code. my $current_value=12345; my @users=("bob","ben","tom","harry"); open DBLIST,"<","/var/tmp/DBinfo"; my @input = <DBLIST>; foreach (@users) { my... (11 Replies)
Discussion started by: chidori
11 Replies

7. Shell Programming and Scripting

Perl - start search by using search button or by pressing the enter key

#Build label and text box $main->Label( -text => "Input string below:" )->pack(); $main->Entry( -textvariable => \$text456 )->pack(); $main->Button( -text => "Search", -command => sub { errchk ($text456) ... (4 Replies)
Discussion started by: popeye
4 Replies

8. Shell Programming and Scripting

Help needed with shell script to search and replace a set of strings among the set of files

Hi, I am looking for a shell script which serves the below purpose. Please find below the algorithm for the same and any help on this would be highly appreciated. 1)set of strings need to be replaced among set of files(directory may contain different types of files) 2)It should search for... (10 Replies)
Discussion started by: Amulya
10 Replies

9. Shell Programming and Scripting

Search pattern on logfile and search for day/dates and skip duplicate lines if any

Hi, I've written a script to search for an Oracle ORA- error on a log file, print that line and the .trc file associated with it as well as the dateline of when I assumed the error occured. In most it is the first dateline previous to the error. Unfortunately, this is not a fool proof script.... (2 Replies)
Discussion started by: newbie_01
2 Replies
explain_printf(3)					     Library Functions Manual						 explain_printf(3)

NAME
explain_printf - explain printf(3) errors SYNOPSIS
#include <libexplain/printf.h> const char *explain_printf(const char *format); const char *explain_errno_printf(int errnum, const char *format); void explain_message_printf(char *message, int message_size, const char *format); void explain_message_errno_printf(char *message, int message_size, int errnum, const char *format); DESCRIPTION
These functions may be used to obtain explanations for errors returned by the printf(3) system call. explain_printf const char *explain_printf(const char *format); The explain_printf function is used to obtain an explanation of an error returned by the printf(3) system call. The least the message will contain is the value of strerror(errno), but usually it will do much better, and indicate the underlying cause in more detail. The errno global variable will be used to obtain the error value to be decoded. format The original format, exactly as passed to the printf(3) system call. Returns: The message explaining the error. This message buffer is shared by all libexplain functions which do not supply a buffer in their argument list. This will be overwritten by the next call to any libexplain function which shares this buffer, including other threads. Note: This function is not thread safe, because it shares a return buffer across all threads, and many other functions in this library. Example: This function is intended to be used in a fashion similar to the following example: errno = 0; int result = printf(format); if (result < 0 && errno != 0) { fprintf(stderr, "%s ", explain_printf(format)); exit(EXIT_FAILURE); } The above code example is available pre-packaged as the explain_printf_or_die(3) function. explain_errno_printf const char *explain_errno_printf(int errnum, const char *format); The explain_errno_printf function is used to obtain an explanation of an error returned by the printf(3) system call. The least the message will contain is the value of strerror(errno), but usually it will do much better, and indicate the underlying cause in more detail. errnum The error value to be decoded, usually obtained from the errno global variable just before this function is called. This is neces- sary if you need to call any code between the system call to be explained and this function, because many libc functions will alter the value of errno. format The original format, exactly as passed to the printf(3) system call. Returns: The message explaining the error. This message buffer is shared by all libexplain functions which do not supply a buffer in their argument list. This will be overwritten by the next call to any libexplain function which shares this buffer, including other threads. Note: This function is not thread safe, because it shares a return buffer across all threads, and many other functions in this library. Example: This function is intended to be used in a fashion similar to the following example: errno = 0; int result = printf(format); if (result < 0 && errno != 0) { int err = errno; fprintf(stderr, "%s ", explain_errno_printf(err, format)); exit(EXIT_FAILURE); } The above code example is available pre-packaged as the explain_printf_or_die(3) function. explain_message_printf void explain_message_printf(char *message, int message_size, const char *format); The explain_message_printf function is used to obtain an explanation of an error returned by the printf(3) system call. The least the mes- sage will contain is the value of strerror(errno), but usually it will do much better, and indicate the underlying cause in more detail. The errno global variable will be used to obtain the error value to be decoded. message The location in which to store the returned message. If a suitable message return buffer is supplied, this function is thread safe. message_size The size in bytes of the location in which to store the returned message. format The original format, exactly as passed to the printf(3) system call. Example: This function is intended to be used in a fashion similar to the following example: errno = 0; int result = printf(format); if (result < 0 && errno != 0) { char message[3000]; explain_message_printf(message, sizeof(message), format); fprintf(stderr, "%s ", message); exit(EXIT_FAILURE); } The above code example is available pre-packaged as the explain_printf_or_die(3) function. explain_message_errno_printf void explain_message_errno_printf(char *message, int message_size, int errnum, const char *format); The explain_message_errno_printf function is used to obtain an explanation of an error returned by the printf(3) system call. The least the message will contain is the value of strerror(errno), but usually it will do much better, and indicate the underlying cause in more detail. message The location in which to store the returned message. If a suitable message return buffer is supplied, this function is thread safe. message_size The size in bytes of the location in which to store the returned message. errnum The error value to be decoded, usually obtained from the errno global variable just before this function is called. This is neces- sary if you need to call any code between the system call to be explained and this function, because many libc functions will alter the value of errno. format The original format, exactly as passed to the printf(3) system call. Example: This function is intended to be used in a fashion similar to the following example: errno = 0; int result = printf(format); if (result < 0 && errno != 0) { int err = errno; char message[3000]; explain_message_errno_printf(message, sizeof(message), err, format); fprintf(stderr, "%s ", message); exit(EXIT_FAILURE); } The above code example is available pre-packaged as the explain_printf_or_die(3) function. SEE ALSO
printf(3) formatted output conversion explain_printf_or_die(3) formatted output conversion and report errors COPYRIGHT
libexplain version 0.52 Copyright (C) 2010 Peter Miller explain_printf(3)
All times are GMT -4. The time now is 02:06 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy