Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

$@, $< and $**

Status
Not open for further replies.

areza123

Programmer
Jul 4, 2002
60
IN
What is the significance of each of these in Perl

$@ - i think this indicates a parameter but to what and where ?
$<
$**

I have found these in my make file which I use with nmake utility.
 
From 'The Camel'...

$@ is the error message from the last eval command.

$< is the real user id of the process that is the perl script that contains it.

$* is an old (deprecated) switch that tells perl whether or not to assume a string is a single line.

I'm not what $** could possibly mean though.

Hope this helps

:)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top