Beefy Boxes and Bandwidth Generously Provided by pair Networks
"be consistent"
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -w #--------------------------------------------------------------------- +------- # Copyright (C) 2001-2003 Ed Halley #--------------------------------------------------------------------- +------- =head1 NAME unhead - remove the lines before a match from the input stream untail - remove the lines following a match from the input stream =cut # Both 'unhead' and 'untail' are identical; they determine the task fr +om # the $0 perl variable. The scripts can be linked or symlinked or sim +ply # copied, and will still work as long as they have the correct filenam +es. =head1 SYNOPSIS unhead '--BEGIN MESSAGE--' *.txt untail '--END MESSAGE--' *.txt =head1 DESCRIPTION The historically common C<head>(1) and C<tail>(1) commands are for keeping the head or tail of stream input, usually by a count of lines. This pair of scripts differ in two respects: these scripts work on a single regex (regular expression) to find a matching "cut here" point +in the text, and these scripts edit text files in place. By default, the first argument should be a regular expression that sho +uld match at least once in each subsequent file. If no additional argumen +ts are given, or if the filename is a hyphen (-), then the standard input and standard output streams are assumed. For filenames, each file is processed in turn, creating a backup file with a tilde (~) appended to the original name. The C<unhead> variant will remove the header above the given match, an +d write out the tail (including the first matching line). The C<untail> variant will remove the trailing below the given match, and only write out the head (not including the first matching line). =cut #--------------------------------------------------------------------- +------- use warnings; use strict; my $want = ($0 =~ /untail/)? 'head' : 'tail'; my $suffix = '~'; my $pattern = shift(@ARGV); die "First argument should be a regular expression string" if not $pat +tern; $pattern = qr/$pattern/; @ARGV = ('-') if not @ARGV; exit(main(@ARGV)); #--------------------------------------------------------------------- +------- sub main { while (@_) { my $inp = *STDIN; my $outp = *STDOUT; my $file = shift; if ($file ne '-') { die if not -w $file; $inp = *FIN; $inp = *FIN; # hush hush warning warning $outp = *FOUT; $outp = *FOUT; unlink($file.$suffix) if -f $file.$suffix; rename($file, $file.$suffix); open($inp, $file.$suffix) or die "Cannot open $file"; open($outp, '>'.$file) or die "Cannot open $file"; } my $have = 'head'; while (<$inp>) { $have = 'tail' if m{$pattern}; print $outp $_ if $want eq $have; } if ($file ne '-') { close($outp); close($inp); } } } __END__ #--------------------------------------------------------------------- +------- =head1 IDEAS # chop off email routing header info (first empty line) cat email.msg | unhead '^$' # just students from "Danziger, Jane" to "Funicello, Thomas" query-students | sort | unhead '^D' | untail '^G' # keep the center section of a YACC grammar unhead '^%%$' *.y ; untail '^%%$' *.y =head1 BUGS The C<unhead> variety will discard everything and leave an empty file +if no lines match the given pattern. This is not a bug, but worth a warning. In the case of actual files, you still have the tilde backup +. The script for both C<unhead> and C<untail> are identical, and one can + be a link to the other. The script determines which part to keep based o +n the script's name. =head1 LICENSE Copyright (C) 2001-2003 Ed Halley <ed@halley.cc> This program is free software; you can redistribute it and/or modify i +t under the same terms as Perl itself. For details on the Perl Artistic License, read the F<http://www.perl.com/language/misc/Artistic.html> page. =cut

In reply to unhead and untail by halley

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (8)
As of 2024-04-19 14:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found