1# Script to start "monkey" on the device, which has a very rudimentary
2# shell.
3#
4base=/system
5export CLASSPATH=$base/framework/monkey.jar
6trap "" HUP
7for a in "$@"; do
8    echo "  bash arg:" $a
9done
10exec app_process $base/bin com.android.commands.monkey.Monkey "$@"
11
12