Oct 7, 2003 #1 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.
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.
Oct 8, 2003 #2 Tardigrade Programmer Aug 17, 2000 53 GB 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 Upvote 0 Downvote
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
Oct 8, 2003 #3 icrf Programmer Dec 4, 2001 1,300 US Here's a listing: http://www.perldoc.com/perl5.8.0/pod/perlvar.html ---------------------------------------------------------------------------------- ...but I'm just a C man trying to see the light Upvote 0 Downvote
Here's a listing: http://www.perldoc.com/perl5.8.0/pod/perlvar.html ---------------------------------------------------------------------------------- ...but I'm just a C man trying to see the light