- #!/bin/sh
- bindir="${PWD}/bin"
- echo "1"$bindir
- versiondir=${PWD}
- echo "2"$versiondir
- cefpath="${bindir}/Chromium/cefclient"
- echo "3"$cefpath
- urlpath="${versiondir}/res/ManagerDesktop/page.html?entry=expire#basicinfo"
- echo "4"$urlpath
- cmdpath="${cefpath} --url=file:///${urlpath} --no-sandbox --hide-tabs --hide-controls --always-on-top --disable-web-security --logextend=errPage"
- echo "5"$cmdpath
- exec ${cmdpath}
|