2

I am running python scripts from the shell script. And after executing the python script, CLASSPATH is being displayed.

Is there any way where I could eliminate the CLASSPATH and execute the wlst.

Thanks, TJ

PavanDevarakonda
  • 625
  • 5
  • 27
teja
  • 21
  • 1

1 Answers1

0

Your question not that clear, though $CLASSPATH can set to blank with in shell script look like this.

#!/bin/bash

CLASSPATH="" # this is only required for those who don't want CLASSPATH
# Here python script called
$MW_HOME/oracle_common/common/bin/wlst.sh wlstscript.py

This may be helpful for others who are trying to call the wlst-script from shell

PavanDevarakonda
  • 625
  • 5
  • 27