mirror of
git://xwords.git.sourceforge.net/gitroot/xwords/xwords
synced 2024-12-30 10:26:58 +01:00
30 lines
537 B
Bash
Executable file
30 lines
537 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -u -e
|
|
|
|
INDX=1
|
|
PAT="."
|
|
|
|
usage() {
|
|
[ $# -ge 1 ] && echo "ERROR: $1"
|
|
echo "usage: $(basename $0) [-n <1-based-indx>] [-g]"
|
|
exit 1
|
|
}
|
|
|
|
while [ $# -ge 1 ]; do
|
|
case $1 in
|
|
-n) shift
|
|
[ $# -ge 1 ] || usage "-n requires a parameter"
|
|
INDX=$1
|
|
;;
|
|
-g) PAT="D/XW4\|D/xw4"
|
|
;;
|
|
*)
|
|
usage
|
|
;;
|
|
esac
|
|
shift
|
|
done
|
|
|
|
DEVICE=$(adb devices | grep 'device$' | awk '{print $1}' | sed -n "${INDX}p")
|
|
adb -s $DEVICE logcat | grep "$PAT"
|