man touch mkdir cp cd rm mv echo pwd cat alias unalias head tail tree rmdirxargs find awk sed grep vi vim seq man: an interface to the on-line referen ...
分类:
系统相关 时间:
2018-10-25 17:06:56
阅读次数:
218
1. 事件分为两类: a) 冒泡事件 b) 非冒泡事件: 除上表之外的其他组件自定义事件如无特殊声明都是非冒泡事件 2. 事件绑定(bind、catch) 事件绑定有两种方式: a) 以bind+事件名称,或 bind: + 事件名称,比如: bindtap 等同于 bind:tap,这种方式不会阻 ...
分类:
微信 时间:
2018-10-25 12:11:51
阅读次数:
580
1、ls 列出目录 2、tree 以树状图列出目录 3、pwd 查看当前目录 4、cd 切换目录 5、mkdir 创建目录 6、touch 创建文件 7、rm 删除文件 8、cp 拷贝 9、mv 复制、重命名 10、路径 ...
分类:
系统相关 时间:
2018-10-24 22:02:52
阅读次数:
176
跟touch事件相关的3个方法: public boolean dispatchTouchEvent(MotionEvent ev); //用来分派event public boolean onInterceptTouchEvent(MotionEvent ev); //用来拦截event publ ...
分类:
移动开发 时间:
2018-10-24 16:05:31
阅读次数:
232
目录 一 .ls 命令 二.cd 命令 三.touch 命令 四.mkdir 命令 五.cp命令 六.mv 命令 七.which 命令 一 .ls 命令 一.ls命令 1.命令作用 列表显示目录内的文件及目录 不显示.开头的隐藏文件 2.命令格式 ls 选项 文件名或目录 3.常用参数 4.常见实例 ...
分类:
系统相关 时间:
2018-10-24 01:21:01
阅读次数:
243
1、设置( 可有可无)git config --global user.name "name"git config --global user.email "name@**.com.cn" 2、在git上新建一个工程 test ,假设地址为:http://gitlab2/liumimg/test.g ...
分类:
Web程序 时间:
2018-10-23 00:17:54
阅读次数:
224
一、帮助命令(1)helpxxxx --helphelp xxxx(2)manman xxxx二、ls查看命令:列表显示目录内的文件及目录ls 参数-l 以列表的形式显示-d 显示目录本身属性-a显示所有子目录和文件信息-R以递归的方式显示目录及其子目录中的所有内容三、touch命令:创建空文件to ...
分类:
系统相关 时间:
2018-10-21 21:49:40
阅读次数:
182
1.touch命令的使用 2.使用(cd -)可以在上次使用的目录来回切换 3.ls通配符的使用*代表任意字符和任意个字符, ?代表任意一个字符, [12345]中的任意一个字符, [1-5]中的任意一个字符. 4.ls的-h, -h, --human-readablewith -l and/or ...
分类:
系统相关 时间:
2018-10-21 20:36:37
阅读次数:
153
变量说明$$ Shell本身的PID(ProcessID)$! Shell最后运行的后台Process的PID$? 最后运行的命令的结束代码(返回值)$- 使用Set命令设定的Flag一览$* 所有参数列表。如"$*"用「"」括起来的情况、以"$1 $2 … $n"的形式输出所有参数。$@ 所有参数 ...
分类:
系统相关 时间:
2018-10-21 18:30:16
阅读次数:
182
linux文件管理(二)1.创建文件:[root@dong~]#touch/home/{file1,file2}同时在home下创建[root@dong~]#ls/homeduoerfile1file2hrhr01hr02hulklost+foundtest.txt2.创建目录mkdir[root@dong~]#mkdirdir1创建目录dir1[root@dong~]#mkdir/home/di
分类:
系统相关 时间:
2018-10-21 18:27:32
阅读次数:
163