I have a program which is located in
say
$A430CLASS/com.airbus.adcsip.batch.GlobalReportBatch
$A430CLASS is the path where my class file is present.
i want to run it through shell script so i entered following command :
java -classpath $A430CLASS/com.airbus.adcsip.batch.GlobalReportBatch $A430CONF/batch.properties
$A430CONF is the path where the batch.properties file is present.
GlobalReportBatch is my class file name
As you can see i want to pass this batch.properties file as argument to my java program. but when i run my script it tries to replace "." in batch.props file to "/" it gives me NoClassDefFound
error.