I have a directory with about thirty text files. I was trying to find an acronym in the directory, but I didn't really remember what it was (other than it was a four letter word starting with M).
I tried a few one-liners, but none of them worked. Since I was just trying to find something really quickly, I decided to punt and just write a script to do what I wanted.
Now I'm trying to learn more about one-liners (I don't have any experience with them) just so I can handle this situation a bit better next time it comes up.
I should also note that I'm doing this from a Windows command prompt.
Here are some of the one-liners that I tried (in a for loop, single file example shown here):
- perl -pe "m/M[A-Z]{3} /" 1-01.txt
Outputs the source file exactly.
- perl -pe "if (m/(M[A-Z]{3}) /) { print $1; }" 1-01.txt
Outputs the source file exactly.
And finally, here's the subroutine that actally did what I wanted:
my @files = <*.txt>;
undef $/;
foreach (@files) {
open ( FH, $_ );
my $txt = <FH>;
close ( FH );
while ( $txt =~ m/(M[A-Z]{3}) /gs ) { print " $1\n"; }
}
Is there a way to do something like this as a one-liner? If so, then can I incorporate the glob into the one-liner? Thanks for your help.
janitored by ybiC: Prepend tile wit "One-liner" for searchability
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.