Linux
crond123
这个作者很懒,什么都没留下…
展开
-
浅析proc文件系统的创建和create_proc_read_entry函数的具体实现
<br />浅析kern_mount加载sysfs的流程<br /><br /> 因为sysfs是一个内存文件系统, 所以文件的物理存储关系就需要使用sd来维护, 因此sysfs_dirent即sd就类似于硬盘中的磁道.<br /> sysfs文件系统是一个排它式的文件系统,不论被mount多少次都只产生一个sb超级块,<br /> 如果尝试再次mount,即尝试再次调用sysfs_get_sb获取另一个sb超级块,那么将执行atomic_inc(old->s_active);增加转载 2010-07-20 08:56:00 · 4559 阅读 · 0 评论 -
unix 常用命令 perl 实现 sed awk tr nl
sed task sed perl Replace 12 with twelvesed 's/12/twelve/g'perl -pe 's/12/twelve/g'Replace the word sh with Bourne Shellsed -e 's/ sh / Bourne Shell /g'[1]perl -pe 's//bsh/b/Bourne Shell/g'[2]Remove lines 2 to 4 from stream sed '2,4d'perl -nle 'pri转载 2010-07-23 17:31:00 · 1779 阅读 · 0 评论