1#!/system/bin/sh 2 3AGENT_OPTIONS= 4if [[ "$1" == --agent-options ]] ; then 5 shift 6 AGENT_OPTIONS="=$1" 7 shift 8fi 9 10APP=$1 11shift 12 13$APP -Xplugin:libopenjdkjvmti.so "-agentpath:liblockagent.so$AGENT_OPTIONS" $@ 14