UpdateManager.sh
上传用户:aonuowh
上传日期:2021-05-23
资源大小:35390k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. #!/bin/sh
  2. # Set the java home directory, 
  3. # For example: If jdk1.2 is installed in your machine in the /usr/jdk1.2 
  4. # directory then set JAVA_HOME_DIR=/usr/jdk1.2
  5. . setallEnv.sh
  6. cd ..
  7. # Set the PATH
  8. PATH=${JAVA_HOME_DIR}/bin:${PATH}
  9. # Set the CLASSPATH
  10. CLASSPATH=$CLASSPATH
  11. export PATH CLASSPATH
  12. # Usage java com.adventnet.tools.update.PatchManager  [-i internationalize] [-l language] [-o country] [-p properties] [-f filepath]
  13. # Give the command line arguments in ""
  14. #  -i internationalize(Give true for internationalisation)
  15. #  -l language (lowercase two-letter ISO-639 code)
  16. #   -o country (uppercase two-letter ISO-3166 code)
  17. #   -p properties (Give the name of .properties file)
  18. #   -f filepath (The path where the .properties file is present)     
  19. $JAVA_CMD com.adventnet.tools.update.PatchManager -i "true" -l "en" -o "IN" -p "UpdateManager" -f "$SNMP_HOME/conf"