Advertisement
Guest User

Untitled

a guest
Apr 26th, 2015
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. #!/bin/bash
  2.  
  3. # This script connects Android Debug Bridge to the VirtualBox Android VM.
  4. # To get IP address of VM, launch VM, go to Terminal and type 'netcfg'.
  5. # The IP is next to the eth0 interface
  6.  
  7. # Author: Cory Sytsma
  8.  
  9. printf "Connecting to VirtualBox Android VM...\n"
  10. # Ratio office WiFi
  11. printf "Trying 192.168.21.199..."
  12. /Users/csytsma/Library/Android/sdk/platform-tools/adb connect 192.168.21.199
  13. # Home office Ethernet
  14. printf "Trying 192.168.1.122..."
  15. /Users/csytsma/Library/Android/sdk/platform-tools/adb connect 192.168.1.122
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement