Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
My file p5dbglob.pl
#!/usr/bin/perl -- use strict; use warnings; Main( @ARGV ); exit( 0 ); sub Main { for my $dir ( @_ ){ chdir $dir or die $!; Fudge( $dir, glob '*' ); } } sub Fudge { my $dir = shift; my $count = @_; print "$dir => $count \n"; }
I want to step into Fudge() but without stepping into glob ( File::Glob::csh_glob ... ), but how?
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: perl5db - how to step into my sub without stepping into glob
by Anonymous Monk on Jun 14, 2012 at 11:37 UTC | |
by bibliophile (Prior) on Jun 14, 2012 at 15:41 UTC | |
Re: perl5db - how to step into my sub without stepping into glob
by chrestomanci (Priest) on Jun 14, 2012 at 15:46 UTC | |
Re: perl5db - how to step into my sub without stepping into glob
by trwww (Priest) on Jun 14, 2012 at 19:23 UTC |