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