• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/system/bin/sh
2spath=$( cd "$(dirname "$0")" ; pwd -P )
3cd $spath
4
5source run.common
6
7# Directly execute a command within the chroot of an Android device
8CMD="$*"
9
10chroot debian /bin/bash --rcfile '.bashrc.silent' -i -c "$CMD"
11