摘要:
修改CS,IP指令 阅读全文
摘要:
本文转载 http://www.cnblogs.com/chengmo/archive/2010/10/14/1851570.html ,感谢作者! shell可以在不调用第3方命令,表示不同进制数据。这里总结以下表示方法。shell 脚本默认数值是由10 进制数处理,除非这个数字某种特殊的标记法或 阅读全文
摘要:
1、find中的-exec参数 在当前目录下(包含子目录),查找所有txt文件并找出含有字符串"bin"的行 find ./ -name "*.txt" -exec grep "bin" {} \; 在当前目录下(包含子目录),删除所有txt文件 find ./ -name "*.txt" -exe 阅读全文
摘要:
#include <stdio.h> #include <stdlib.h> #include <string.h> #include "com_time.h" #include "com_func.h" /* * Definition of leap year: Rule 1: A year is 阅读全文