adb_shell 143 B

123456789
  1. #!/bin/sh
  2. export ENV='/etc/adb_profile'
  3. if [ $1 = '-' ];then
  4. exec /bin/sh
  5. elif [ $1 = '-c' ];then
  6. exec /bin/sh -c "$2"
  7. else
  8. exec /bin/sh
  9. fi