Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
2answers
200 views

Are keys and values of %INC platform-dependent or not?

I'd like to get the full filename of an included module. Consider this code: package MyTest; my $path = join '/', split /::/, __PACKAGE__; $path .= ".pm"; print "$INC{$path}\n"; 1; $ perl ...
3
votes
5answers
137 views

How is $_ different from named input or loop arguments?

As i use $_ a lot i what to understand its usage better. $_ is a global variable for implicit values as far as i understood and used it. As $_ seems to be set anyway, are there reasons to use named ...
3
votes
3answers
485 views

What is the difference betweeen %INC and @INC?

What is the difference between %INC and @INC in Perl?
1
vote
2answers
292 views

Current filename for find/xargs/perl -ne?

i'm working in the shell, trying to find NUL chars in a bunch of csv files (that python's csv importer is whinging about, but that's for another time) using the so-proud-of-my-ever-clever-self: find ...
1
vote
3answers
305 views

What does the special variable $@ mean in Perl?

I'm trying to understand the following piece of code: sub foo { ... if ( $@ ) { ... die $@; } }