# デバイス一覧を確認する
$ adb devices
List of devices attached
************** device
# シェル起動
$ adb shell
# デバイスが複数がある場合
$ adb -s ************** shell
# ログを取得する
$ adb logcat
# タップする
$ adb shell input touchscreen tap 0 0
# ファイルを転送する
$ adb push {PCのファイル} {端末のファイル}