# ADB

#### Installing ADB

```
apt-get update
sudo apt-get install adb -y
adb devices -l
```

#### Connecting to Mobile device

```
adb connect x.x.x.x:5555
adb devices -l
adb shell  
```

#### Downloading files from Android device

```
adb pull /sdcard/<file> <Local Path>
```

#### Uploading files from the Android device

```
adb puch <local path> /sdcard/<path>
```
