项目主页:http://sourceforge.net/projects/icmpshell/ 一、下载及安装 <pre class="prettyprint linenums lang-bsh">wget http://nchc.dl.sourceforge.net/project/icmpshell/ish/v0.2/ish-v0.2.tar.gz tar zxvf ish-v0.2.tar.gz cd ISHELL-v0.2/ make linux <br /> 最后这一步是根据操作系统类型来选择的,可选的类型有: <pre class="prettyprint linenums lang-bsh">[root@localhost ISHELL-v0.2]# make ------------------------------- Make with the OS from the list: 1.) linux 2.) bsd 3.) solaris ex: make bsd ------------------------------- [root@localhost ISHELL-v0.2]# <br /> 这里我选择make linux,编译完……
偶然的一次从linuxtone上看到的两个题目,据说是百度的面度题目,看起来挺有意思的,现摘录下来供大家玩味下: 题目1: a文件内容 a a a a b b b b c c c c b文件内容 1 1 1 1 2 2 2 2 3 3 3 3 将b文件内容插入到a文件内容的b b b b 下面,只依本题来看,可以做如下解法: 1sed -i '2r b' a 这样似乎……
本文编译自commandlinefu.com的系列文章Top Ten One-Liners from CommandLineFu Explained。作为一个由用户推荐最有用shell命令的网站,其记录了数以万计的各色shell命令,其中不乏相当实用和有趣的,本文就要细数当 中获投票最高的一些命令,从其中取材并加以细释,希望读者能从中受益。 1……
本文编译自commandlinefu.com的系列文章Top Ten One-Liners from CommandLineFu Explained。作为一个由用户推荐最有用shell命令的网站,其记录了数以万计的各色shell命令,其中不乏相当实用和有趣的,本文就要细数当 中获投票最高的一些命令,从其中取材并加以细释,希望读者能从中受益。 1……
1. 更友好的显示当前挂载的文件系统 1mount | column -t 这条命令适用于任何文件系统,column 用于把输出结果进行列表格式化操作,这里最主要的目的是让大家熟悉一下 columnt 的用法。下面是单单使用 mount 命令的结果: 1$ mount 2 3/dev/root on / type ext3 (rw) 4/proc on /proc type proc (rw) 5/dev/mapper/lvmraid-home on /home type ext3 (rw,noatime) 而加了 column -t 命令后就成为这样了: 1$ mount | column -t 2 3/dev/root on / type ext3 (rw)……