最新评论

  • zongren 2019/05/08

    macOS禁用iTunes备份

    defaults write com.apple.iTunes DeviceBackupsDisabled -bool true
    

    启用

    defaults write com.apple.iTunes DeviceBackupsDisabled -bool false
    
  • 宗仁 2018/10/19

    开启x5内核设置界面
    http://debugx5.qq.com/

  • zongren 2018/09/27

    获取android id

    adb shell settings get secure android_id
    
  • Vincent Tam 2018/09/18

    @宗仁    The original setup guide contains typo (about GitLab bot’s permissions). The GitLab repo setup and the API server setup are mixed together. You may see my repo setup walkthrogh and my custom API config to know more.

  • zongren 2018/09/15

    android shell遍历两个数组

    array=(
      Vietnam
      Germany
      Argentina
    )
    array2=(
      Asia
      Europe
      America
    )
    
    for index in ${!array[*]}; do 
      echo "${array[$index]} is in ${array2[$index]}"
    done
    

    资料来源:stackoverflow