Is it possible to get the current source line number in Perl?
The equivalent in C++ is __LINE__.
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|||||||
|
or
|
|||||
|
|
The __LINE__ literal is documented in the Special Literals section of the perldata man page. |
|||
|
|
|
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... |
|||
|
|
|
This prints out the line where you are, and also the "stack" (list of lines from the calling programs (scripts/modules/etc) that lead to the place you are now)
|
||||
|
|