技术杂货铺

  1. 统计工程中类个数
$  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
  1. Android 命令查看当前页面

Window

$ adb shell dumpsys window|findStr mCurrentFocus

Mac && Unix

$ adb shell dumpsys window|grep mCurrentFocus
  1. 测试隐式意图
$ adb shell am start
            -W -a android.intent.action.VIEW
            -d  
  1. git 修改配置
$ git config --global key value
$ git config --unset key

8.git中文改为英文提示
在.zshrc中添加如下配置,同时保证改为英文后,中文不乱码
alias git='LANG=en_US.UTF-8 git'

你可能感兴趣的:(技术杂货铺)