摘要: JMeter:http://www.cnblogs.com/ceshisanren/p/5639895.html 阅读全文
posted @ 2017-08-20 11:01 辛梓 阅读(59) 评论(0) 推荐(0) 编辑
摘要: sed常用命令 1.把开头/结尾为str1的行替换为str2: 2.将文件中含 "arr" 字符串的数据行中的 "str1" 字符串 , 替换成为 "str2" 字符串: 3.将文件中第 5 行数据 , 替换成句子"hello world!!!" 4.将文件中 1 至 100 行 , 替换成如下两行 阅读全文
posted @ 2017-08-06 14:01 辛梓 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 1. https://github.com/google/googletest/releases 2. 配置Google Test项目 1)【解决方案】下右键,新建【GoogleTest项目】(Win32 Project) 2) 解压gtest-1.7.0后,复制文件夹到【GoogleTest项目】 阅读全文
posted @ 2017-07-23 17:33 辛梓 阅读(330) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/Shirlies/p/4282182.html 1. 打开文件 阅读全文
posted @ 2017-04-03 18:55 辛梓 阅读(170) 评论(0) 推荐(0) 编辑
摘要: "markdown.styles": [ "E:\\VS_code\\Github\\css\\purple.css" ] 替换字符串: sed 's/book/books/g' file 选各目录下用例列表 #!/bin/sh module=local_index test="scripts\/$ 阅读全文
posted @ 2017-03-05 11:04 辛梓 阅读(151) 评论(0) 推荐(0) 编辑
摘要: Linux系统下的多线程遵循POSIX线程接口,称为pthread。编写Linux下的多线程程序,需要使用头文件pthread.h,连接时需要使用库libpthread.a。与vxworks上任务的概念类似,都是调度的最小单元,都有共享的堆、栈、代码区、全局变量等。 2. 创建线程 int pthr 阅读全文
posted @ 2016-12-07 22:54 辛梓 阅读(626) 评论(0) 推荐(0) 编辑