码迷,mamicode.com
首页 >  
搜索关键字:sed head tail    ( 45574个结果
sed的模式匹配用法探讨
[root@sunskyDesktop]#catsunsky a b c d e f [root@sunskyDesktop]#catsunsky|sed‘1,2d‘|sed‘1,2d‘ e f [root@sunskyDesktop]#catsunsky|sed-e‘1,2d‘-e‘1,2d‘ d e f问题:sed中-e的意思是直接在指令列模式上进行sed的动作编辑按照,那么按照-e的含义,上下两组命令的执行结果..
分类:其他好文   时间:2014-05-05 12:21:02    阅读次数:277
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
linux之sed
Sed基本用法Sed:StreamEditor行编辑器(全屏编辑器:vi)模式空间sed是一种在线编辑器,它一次处理一行内容。处理时,把当前处理的行存储在临时缓冲区中,称为“模式空间”(patternspace),接着用sed命令处理缓冲区中的内容,处理完成后,把缓冲区的内容送往屏幕。接着处理..
分类:系统相关   时间:2014-05-04 17:26:24    阅读次数:428
linux之vim编辑器详解
字处理器:像word,wps,除了本文本身以外,还有修饰方面的设置。文本编辑器:编辑纯ASCII文档。nano,sed入门简单,功能简陋。强大的vi编辑器(VisualInterface)现在是Vim:VIinproved它是全屏编辑器,模式化编辑器。vim模式:编辑模式(命令模式)输入模式末行模式默认处于编..
分类:系统相关   时间:2014-05-04 17:07:13    阅读次数:374
【译】 AWK教程指南 附录E-正则表达式
为什么要使用正则表达式 UNIX 中提供了许多 指令 和 tools,它们具有在文件中 查找(Search)字串或替换(Replace)字串 的功能。像 grep, vi , sed, awk,...不论是查找字串或替换字串,都得先告诉这些指令所要查找(被替换)的字串为何。若未能预先明确知道所要查....
分类:其他好文   时间:2014-05-04 11:24:00    阅读次数:312
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
迷上了代码!