Skip to main content

โš™๏ธ Execution Tools

Utilities for executing files and processes.


runโ€‹

Supports: _addon _zip

Runs a file and saves the result in a variable.

ArgumentDescription
VARVariable for result
FILEFile to run
ARGArguments (multiple allowed)
run log1 "$TMP/busybox" chmod --help

run_waitโ€‹

Limits execution time of an action.

ArgumentDescription
TIMETime limit in seconds
ACTIONAction to run
ARGArguments (multiple allowed)
run_wait 5 run log1 "$TMP/busybox" echo HUH
warning

Experimental feature.


run_jarโ€‹

Supports: _addon _zip

Runs a DEXed JAR file using the Android Dalvik VM.

ArgumentDescription
JARJAR file
ARGArguments (multiple allowed)
run_jar "$TMP/apktool.jar" --help
note

Requires Dalvik VM; not all JARs work.


run_jar_classโ€‹

Supports: _addon _zip

Runs a specific class in a DEXed JAR file.

ArgumentDescription
JARJAR file
CLASSClass to run
ARGArguments (multiple allowed)
run_jar_class "$TMP/apktool.jar" "brut.apktool.Main" --help