I have a DNS zone file that I parsed to just the network addresses. They look like this:
1.100.10
2.100.10
3.100.10
They are in "reverse" order and I'd like to find a Perl one-liner to put them right. I've already solved my problem with a script:
use strict;
use warnings;
open my $fh, "<", "zones.txt";
my @lines = <$fh>;
close $fh;
for (@lines) {
chomp $_;
my @F = split /\./, $_;
print join ('.', reverse @F) . "\n"
}
Output would be like:
10.100.1
10.100.2
10.100.3
I'm sure there must be a one-liner with something like "perl -ape -F/./ "stuff here" zone.txt" ... but I just can't get it work. Of course I'm on Windows, so that makes the whole single quote / double quote thing a bit tricky too.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.