上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页
摘要: ``` split [-bl] file [prefix] 参数说明: -b, --bytes=SIZE:对file进行切分,每个小文件大小为SIZE。可以指定单位b,k,m。 -l, --lines=NUMBER:对file进行切分,每个文件有NUMBER行。 prefix:分割后产生的文件名前缀。 示例: 假设要切分的文件为test split -l 5000 test prefi... 阅读全文
posted @ 2016-10-25 15:02 蚂蚁都督 阅读(125) 评论(0) 推荐(0) 编辑
摘要: ``` //18:a6:f7:12:0b:8b //18:a6:f7:1e:a9:57 //18:a6:f7:1f:8e:69 //18:a6:f7:12:0b:9c //18:a6:f7:1f:cd:d4 //18:a6:f7:1c:94:35 ``` 阅读全文
posted @ 2016-10-24 09:19 蚂蚁都督 阅读(125) 评论(0) 推荐(0) 编辑
摘要: ``` [转载] 代码从开发到测试要经过各种环境,开发环境,测试环境,demo环境,线上环境,各种环境的配置都不一样,同时要方便各种角色如运维,接口测试, 功能测试,全链路测试的配置,hardcode 肯定不合适,如Spring profile一样写在jar包不合适.分布式应用中一般采用集中管理配置的方式,通过使用开源软件,如阿里的diamond,netflix的consul等等,SpringBo... 阅读全文
posted @ 2016-10-24 05:21 蚂蚁都督 阅读(1950) 评论(0) 推荐(0) 编辑
摘要: 前者是迭代器 后者是接口,List等继承这个接口 阅读全文
posted @ 2016-10-22 07:49 蚂蚁都督 阅读(156) 评论(0) 推荐(0) 编辑
摘要: notice 阅读全文
posted @ 2016-10-22 07:48 蚂蚁都督 阅读(310) 评论(0) 推荐(0) 编辑
摘要: select from test\G; 阅读全文
posted @ 2016-10-21 10:44 蚂蚁都督 阅读(34200) 评论(0) 推荐(1) 编辑
摘要: 遍历jsonobject 1 entrySet.iterator生成迭代器 2 从迭代器获取Map.Entry的单元对象 3 获取key和value 阅读全文
posted @ 2016-10-21 06:36 蚂蚁都督 阅读(4449) 评论(0) 推荐(0) 编辑
摘要: ``` use docker tag command tag Tag an image into a repository ``` 阅读全文
posted @ 2016-10-20 09:36 蚂蚁都督 阅读(5135) 评论(0) 推荐(0) 编辑
摘要: ``` #!/bin/sh pkill airodump airmon-ng stop wlan0mon service network-manager restart rm -rf sadsad* ``` 阅读全文
posted @ 2016-10-20 09:34 蚂蚁都督 阅读(340) 评论(0) 推荐(0) 编辑
摘要: Dockerfile create image docker build t marvin/spring boot:latest . start docker docker run d name spring docker p 8080:8080 marvin/spring boot:latest 阅读全文
posted @ 2016-10-19 14:51 蚂蚁都督 阅读(368) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 13 下一页