Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re: How do I get an exclusion with grep?

by kcott (Archbishop)
on Apr 27, 2020 at 05:59 UTC ( [id://11116103]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    $ perl -E 'say for "qwe", "qwe\n"'
    qwe
    qwe
    
  2. or download this
    $ perl -E 'say "|$_|" for "qwe", "qwe\n"'
    |qwe|
    |qwe
    |
    
  3. or download this
        my %big_image = map +(fc($_) => 1), $opt{big} ? @{$opt{big}} : ();
        for my $cross_file (@cross_files) {
    ...
            my $class = 'svg_group';
            $class .= ' right' unless exists $big_image{fc $text};
        }
    
  4. or download this
    $ perl -E 'my %opt = ( big => [] ); say $opt{big}'
    ARRAY(0x600003a90)
    
    $ perl -E 'my %opt = ( big => [] ); say 0+@{$opt{big}}'
    0
    

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11116103]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (3)
As of 2024-04-25 23:36 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found