in reply to export classpath in perl script
Any Java that you then invoke from Perl using system or backticks will have the new CLASSPATH. Note that when the Perl script exits, the CLASSPATH will remain at its original value, not the value set within the Perl script.$ENV{'CLASSPATH'} = "$ENV{'CLASSPATH'}:/usr/users/private";
|
|---|