码迷,mamicode.com
首页 >  
搜索关键字:cat head tail nl    ( 59491个结果
MathML + MathJax在网页中插入公式
http://www.mathjax.org/download/http://www.w3.org/Math/Software/mathml_software_cat_editors.html
分类:Web程序   时间:2014-05-09 17:09:13    阅读次数:323
CKSUM文件
CKSUM文件的内容是用cksum命令直接生成的:[tortoise@sea sets]$ cat CKSUM1301919688 13493973 base.tgz3312742217 6125601 comp.tgz3524588402 53334 etc.tgz282697710 313498...
分类:其他好文   时间:2014-05-08 20:12:15    阅读次数:197
git revert 用法
git revert 撤销 某次操作,此次操作之前和之后的commit和history都会保留,并且把这次撤销作为一次最新的提交 * git revert HEAD 撤销前一次 commit * git revert HEAD^ 撤销前前一次 commit * git revert commit (...
分类:其他好文   时间:2014-05-07 18:30:02    阅读次数:584
jquey实例之animate
<!doctypehtml> <html> <head> <metacharset="utf-8"/> <scripttype="text/javascript"src="jquery.js"></script> </head> <body> <imgsrc="8fbf0884jw1drfmvfrhrhj.jpg"width="300"height="300"/> <buttonid="btn1..
分类:其他好文   时间:2014-05-05 12:19:01    阅读次数:300
Linux内核之旅 链表实现
1 #include "stdio.h" 2 #include "stdlib.h" 3 4 struct list_head{ 5 struct list_head *prev; 6 struct list_head *next; 7 }; 8 9 struct task{1...
分类:系统相关   时间:2014-05-05 10:10:11    阅读次数:462
Eclipse错误导致无法启动The workspace exited with unsaved changes in the previous session
MyOpenSUSE:/home/jin/workspace # tail -f .metadata/.log !SESSION 2014-05-04 11:35:58.869 -----------------------------------------------eclipse.buildI...
分类:系统相关   时间:2014-05-04 19:34:07    阅读次数:984
《linux 内核完全剖析》 void free_page() 分析
#define PAGE_SIZE 4096 /* these are not to be changed without changing head.s etc */ #define LOW_MEM 0x100000 extern unsigned long HIGH_MEMORY; #define PAGING_MEMORY (15*1024*1024) #define PAGING_PAG...
分类:系统相关   时间:2014-05-04 18:15:51    阅读次数:441
RedHat5.9下搭建DHCP服务器
DHCP服务器的搭建(服务器本身一般都设置为静态ip地址)准备工作:给服务器本身设置固定ip地址[root@localhost~]#cat/etc/sysconfig/network-scripts/ifcfg-eth0//配置文件#IntelCorporation82545EMGigabitEthernetController(Copper)DEVICE=eth0//设备名为eth0,第一块物理网..
分类:其他好文   时间:2014-05-04 17:25:28    阅读次数:426
Insertion Sort List
Sort a linked list using insertion sort.思路:使用插入排序来对链表进行排序。只要注意链表的边界问题,其实关键就是交换链表的值,对链表指针是没有什么影响的。接下来说下具体步骤:1.判断head或者head->next是否为空;2.循环遍历,初始条件pCur=he...
分类:其他好文   时间:2014-05-04 10:01:57    阅读次数:242
LA 4513 Stammering Aliens 字符串hash
字符串hash模板, 本题是求,给定字符串s中至少出现m次的最长字符串长度,及此时起始位置的最大值 LA 4513 Stammering Aliens //#pragma warning (disable: 4786) //#pragma comment (linker, "/STACK:16777216") //HEAD #include #include #include #inc...
分类:其他好文   时间:2014-05-04 09:52:37    阅读次数:304
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!