Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

izut's scratchpad

by izut (Chaplain)
on Jun 23, 2005 at 14:28 UTC ( [id://469407]=scratchpad: print w/replies, xml ) Need Help??

File::Find usage:
#!/usr/bin/env perl use File::Find; find({ wanted => \&process, }, split /:/, $ENV{'PATH'}); sub process { -f && -x && $ARGV[0] eq $_ && print $File::Find::name, "\n"; }
Assignment if defined:
{ $a->{b} = $b || last }
Assignment if defined using tie:
package Tie::Hash::OnlyIf; sub STORE { my $self = shift; my ($key, $val) = @_; if ( $val ) { $self->{$key} = $val; } } package main; tie my %data, Tie::Hash::OnlyIf; $data{b} = $b;
To ultibuzz:
use strict; use warnings; use Test::More qw(no_plan); ok( "1A" =~ /[\w\d]{2,}/ ); ok( "A1" =~ /[\w\d]{2,}/ ); ok( "56429K01B" =~ /[\w\d]{2,}/ ); ok( "1132086" =~ /[\w\d]{2,}/ );
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 goofing around in the Monastery: (5)
As of 2024-04-18 04:18 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found