vote up 2 vote down star
1

Is it possible to get the current source line number in Perl? The equivalent in C++ is __LINE__.

flag

I'm wondering though: why would you need this? – Leon Timmermans Dec 10 '08 at 11:36
I've used it to quickly track the progress through a very long process, and to check the order things are done in, like breakpoints but without using the debugger – David Sykes Dec 15 '08 at 9:11

3 Answers

vote up 15 vote down check
print "File: ", __FILE__, " Line: ", __LINE__, "\n";

or

warn("foo");
link|flag
warn will print on STDERR. – mat Dec 10 '08 at 9:04
vote up 4 vote down

The __LINE__ literal is documented in the Special Literals section of the perldata man page.

link|flag
vote up 1 vote down

Note there's a gotcha with

perl -e'warn("foo")'

foo at -e line 1.

if it ends with a newline it won't print the line number

perl -e'warn("foo\n")'

foo

This is documented in "perldoc -f die", but is perhaps easy to miss in the "perldoc -f warn" section's reference to die...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.