- 统计工程中类个数
$ ll -R |grep -E ".*\.java|.*\.kt"|grep -c -v "R.java"
2.压缩工程中png图片
$ find . -name "*.png"|grep -v -E "build|assets|apng|xargs" open -a ImageOptim
3.测试APP启动时间
$ adb shell am start -S -R 10 -W com.yourpackage/.MainActivity
4.批量删除git分支
$ git branch |grep "feature"|xargs git branch -d
- Android 命令查看当前页面
Window
$ adb shell dumpsys window|findStr mCurrentFocus
Mac && Unix
$ adb shell dumpsys window|grep mCurrentFocus
- 测试隐式意图
$ adb shell am start
-W -a android.intent.action.VIEW
-d <URI> <PACKAGE>
网友评论