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

Thanks for your kindness. I did search first, it was just a matter of not knowing what to search for.

Do you know of a cheatsheet of all the those cryptic variables?

Skip

Replies are listed 'Best First'.
Re^5: Get the name of the calling script in a module function
by chester (Hermit) on Oct 05, 2005 at 15:08 UTC
    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.

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

      Skip
Re^5: Get the name of the calling script in a module function
by VSarkiss (Monsignor) on Oct 05, 2005 at 15:08 UTC

      Much appreciated.

      Skip