Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
#!/usr/bin/perl -- -*-fundamental-*- ## Note: written in 1996 so I am not sure why I use ## "BRASS" and "gold". It may have been because I was ## playing with POV-RAY... ## perl@turnstep.com use strict; my $gzcat = "/usr/local/bin/gzcat"; my $LINESPERPAGE = 20; my $file; unless ($file = shift) { print "What file? "; chop($file = <STDIN>); } my $cols = shift; if ($cols<1 or $cols > 20) { $cols=12; } my $oneline = shift; if ($file =~ /\.gz$/) { open(GOLD, "$gzcat $file|") || die qq[Sorry, can't open "$file": $!\ +n]; } else { open(GOLD, $file) || die qq[Sorry, can't open "$file": $!\n]; } print "\n$file:\n"; my $x=0; my $line=0; my $chars=0; my $page=1; my $totalchars=0; my $brass; my $newline; my $fin; my $all; while (read(GOLD, $brass, 1)){ $newline=0; if ($fin) { print " "; $brass=''; } else { printf "%3d ", ord($brass); } if ($oneline and ord($brass)==10) { $fin=1; } $totalchars++; $chars++; $all .= $brass; if ($x++ > $cols) { $x=0; print " "; if ($all =~ y/\n/$/) { $newline=1; } $all =~ y/\t/=/; $all =~ y/\0-\37\177-\377/?/; print "$all\n"; $all = ""; if ($line++ > $LINESPERPAGE) { print " ($totalchars characters) (Page: $page)"; print " <<HIT RETURN FOR MORE>> "; $line=0; $a = <STDIN>; if ($page++ > 1 and $a =~ /-/) { seek(GOLD, -$chars*2, 1); $totalchars-=$chars*2; $page-=2; } $chars=0; print "\n"; } } $newline and $oneline and exit; } ## Clean up any extra: $all =~ y/\0-\37\177-\377/./; for ($x..$cols) { print "****"; } print "*** $all\n\n"; print "($totalchars characters)\n"; print "\n\n";

In reply to wanka by turnstep

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 having a coffee break in the Monastery: (4)
As of 2024-04-19 05:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found