in reply to Re^4: Get the name of the calling script in a module function
in thread Get the name of the calling script in a module function

perldoc perl will show you a table of contents for all of perldoc. (See here: perl) perlvar has the variable names for example. perlfunc has all the functions. You can view a specific function if you already know its name by perldoc -f functionname. etc. etc. perldoc itself is a bit cryptic at first, but it's not too hard to figure out.

Replies are listed 'Best First'.
Re^6: Get the name of the calling script in a module function
by SkipHuffman (Monk) on Oct 05, 2005 at 16:39 UTC

    Thank you. perlvar is now in my search string for help.

    Skip