- 博客(13)
- 资源 (2)
- 收藏
- 关注
原创 常用linux指令
查看该字符串在文件中出现的次数:grep "string" file -c得到eth0的IP地址,其他名字直接替换即可:ifconfig eth0|grep inet|awk '{print $2}'|awk -F: '{print $2}'ifconfig eth0 | grep inet | cut -d : -f 2 | cut -d ' ' -f 1这两条命令都可以
2017-07-17 17:34:26 312
原创 日志搜索工具
FileLocator Pro 下载信息官方网站:mythicsoft.com解压密码:www.portablesoft.org压缩包MD5:102D3D003231F7482DC70973C4A07FA3开始下载 FileLocator Pro 7.2 Build 2038 简体中文绿色便携版 (32位版)FileLocatorPro_7.2.2038_x86_Por
2016-04-05 09:51:39 951
原创 批量解压shell脚本
for i in `ls /OSM/coffer_log/log/his_debug/message/*.tgz`; do tar xzf $i;j=`ls *`;grep "root data crc" $j;rm $j;done for i in `ls /OSM/coffer_log/log/his_debug/message/*.tgz`; do tar xzf $i;done
2014-08-07 10:37:52 822
转载 qt安装方法详见
http://www.qtcn.org/bbs/apps.php?q=diary&a=detail&did=1553&uid=130767
2013-12-18 21:33:28 445
原创 模块编译常见错误汇总
1、安装模块是提示:Unknown symbol XXXX原因:外部模块接口没有对外声明,或者需要先安装依赖模块,2、如果提示Unknown version of symbo xxxx;Unknown symbol XXXX可能你需要把cat cat xxxx/*.symvers > ./Module.symvers,能够意外的解决问题
2013-12-12 20:22:03 913 1
转载 模块编译错误处理——undefined reference
【转载】离奇“undefined reference”错误分析与解决方案 | Lingcc Insight | 灵犀志趣 http://www.lingcc.com/2012/05/31/12093/#sec-2 httptp://stackoverflow.com/questions/45135/linker-order-gcc/409470#409470
2013-12-05 10:56:43 879
原创 字符设备驱动开发
1、字符设备的注册static int __init module_charDrv_init(){ register_chrdev(CHAR_MAJOR,CHAR_DEV_NAME,chr_fops); }
2013-12-02 19:14:48 551
转载 模块间函数的使用
模块划分的"划"是规划的意思,意指怎样合理的将一个很大的软件划分为一系列功能独立的部分合作完成系统的需求。C 语言作为一种结构化的程序设计语言,在模块的划分上主要依据功能(依功能进行划分在面向对象设计中成为一个错误,牛顿定律遇到了>相对论),C 语言模块化程序设计需理解如下概念:(1) 模块即是一个.c 文件和一个.h 文件的结合,头文件(.h)中是对于该模块接口的声明;(2) 某
2013-11-28 19:29:54 498
原创 判断2的幂的数
思路:从左右两边分别遍历变量的位,直到遇到第一个位为1返回;若左右两边返回的值相等,为幂次方;否则不是。 // TEST.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include #include #define INVADVALUE_32 0xFFFFFFFFtypedef unsigned int uint32;
2013-10-28 15:10:35 486
原创 寻找表达式嵌套深度最大的括号表达式
int main() { char *str = "a+b*(c+2)+(a-(d+4))"; char arrar[20] = {0}; int len = strlen(str); int depth = 0; int maxDeth = 0; char *ptr = NULL; int index = 0; for(int i = 0;i< len;
2013-10-09 16:55:10 1488
原创 vs2008 err C2664
c:\users\gk\desktop\transuabapp\transuabapp\transusbclass.cpp(30) : error C2664: 'CreateEventW' : cannot convert parameter 4 from 'const char [9]' to 'LPCWSTR'1> Types pointed to are unrelate
2012-05-18 15:44:45 587
原创 快速插入查找
// insert_sort.cpp : Defines the entry point for the console application.// 直接插入排序:从小到大排序#include "stdafx.h"void insert_sort(int *array,const int n){int j,k,s;int temp;for(j
2012-05-15 12:48:55 418
翻译 二分查找
#include "stdafx.h"#include "stdio.h"#define MAX 100typedef int DateType ;int n,t;int x[MAX];int binaraySearch(DateType t){ int l,m,u; l=0; u=n; while(l { m=(l+u)/2;
2012-05-02 14:25:26 245
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人