startInit.sh 425 B

12345678910111213
  1. #!/bin/sh
  2. bindir="${PWD}/res"
  3. echo "1"$bindir
  4. unset -v LD_LIBRARY_PATH
  5. versiondir=${PWD}
  6. echo "2"$versiondir
  7. cefpath="${bindir}/RunScript/startMixBrower.sh"
  8. echo "3"$cefpath
  9. urlpath="${versiondir}/res/ManagerDesktop/initPassword.html"
  10. echo "4"$urlpath
  11. cmdpath="${cefpath} --new-window --allow-running-insecure-content --window-size=800,900 --window-position=240,62 --app=file:///${urlpath}"
  12. echo "5"$cmdpath
  13. exec ${cmdpath}