c0046f2167
Shell script needs to start with #! for exec(). Bug 10606037 Change-Id: I594da6f0433e838dcf5b45b991188ceaa52d9bd1
10 lines
210 B
Bash
Executable File
10 lines
210 B
Bash
Executable File
#!/system/bin/sh
|
|
#
|
|
# Script to start "am" on the device, which has a very rudimentary
|
|
# shell.
|
|
#
|
|
base=/system
|
|
export CLASSPATH=$base/framework/am.jar
|
|
exec app_process $base/bin com.android.commands.am.Am "$@"
|
|
|