summaryrefslogtreecommitdiff
path: root/scripts/adb_logcat.sh
blob: e72aabaeabc49abee95d1fe459d5b7c07b8303ba (plain)
1
2
3
4
5
6
7
8
#! /usr/bin/env sh
if [[ $1 == "d" ]]; then
  adb -d logcat *:S CTV DEBUG
elif [[ $1 == "e" ]]; then
  adb -e logcat *:S CTV DEBUG
else
  adb logcat *:S CTV DEBUG
fi