Re: Problem with perl script
remove the 'die'
die tells perl to quit with error.
expression || failure expression
means that:
if expression evaluates to true (e.g. execute succeeded), don't execute failure expression (as the OR condition is satisfied)
if expression evaluates to false (e.g. execute failed), then try failure expression.
Subject
Views
Written By
Posted
3402
April 11, 2005 08:44AM
1970
April 11, 2005 03:55PM
2007
April 14, 2005 08:18AM
Re: Problem with perl script
1913
April 14, 2005 08:58AM
Sorry, you can't reply to this topic. It has been closed.
Content reproduced on this site is the property of the respective copyright holders.
It is not reviewed in advance by Oracle and does not necessarily represent the opinion
of Oracle or any other party.