摘要: android的m、mm、mmm编译命令的使用 android源码目录下的build/envsetup.sh文件,描述编译的命令 - m: Makes from the top of the tree. - mm: Builds all of the modules in the current directory. - mmm: Builds all of the ... 阅读全文
posted @ 2016-08-19 15:29 不止所见 阅读(5918) 评论(0) 推荐(0) 编辑
摘要: adb 常用命令大全1. 显示系统中全部Android平台: android list targets2. 显示系统中全部AVD(模拟器): android list avd3. 创建AVD(模拟器): android create avd --name 名称 --target 平台编号4. 启动模拟器: emulator -avd 名称 -sdcard ~/名称.im... 阅读全文
posted @ 2016-08-19 14:07 不止所见 阅读(167) 评论(0) 推荐(0) 编辑
摘要: 有两种方式: 1、用tr 例如:UPPERCASE=$(echo $VARIABLE | tr '[a-z]' '[A-Z]') (把VARIABLE的小写转换成大写) LOWERCASE=$(echo $VARIABLE | tr '[A-Z]' '[a-z]') (把VARIABLE的大写转换成小写) 2、用typeset typeset -u ... 阅读全文
posted @ 2016-08-19 08:52 不止所见 阅读(9717) 评论(0) 推荐(0) 编辑