mac os 下搭建android开发环境 周银辉 mac os 下搭建android环境比较方便, 如下几个步骤: 1,安装jdk 先搞清楚自己是否已经安装,在命令行下:java -version,如何有版本信息输出,则已经安装了,比如我的 192% java -version java version "1.8.0_05" Java(TM) SE Runtime Environment (build 1.8.0_05-b13) Java HotSpot(TM) 64-Bit Ser…
linux环境下删除包含特殊字符的文件或目录 ls -liUse find command as follows to delete the file if the file has inode number 4063242: $ find . -inum 4063242 -deleteOR$ find . -inum 4063242 -exec rm -i {} \;…