发布时间:2015-11-18 14:02:50
1. PIPESTATUS 数据处理类shell脚本中可能会多次用到 “cat xxx|awk yyy”类似的管道命令,判断返回值时不能仅仅用$?来判断返回值,最好使用PIPESTATUS获取管道中所有命令的返回码好处:第一条命令失败后就能提前发现问题,避免问题被遗漏或置后发现。用法:PIPESTATUS 是一个数组,第.........【阅读全文】
发布时间:2015-11-13 09:15:29
1.如何查看mountpoint$mountpoint /mnt/iso ==>/mnt/iso/ is not a mountpoint2. Mount Commandmount -t nfs xx.xx.xx.xx:/test /test3.mount 本地目录mount --build /directory1 /directory2......【阅读全文】
发布时间:2015-11-12 13:23:07
1. 安装FCGI模块# wget http://search.cpan.org/CPAN/authors/id/B/BO/BOBTFISH/FCGI-0.70.tar.gz# tar zxvf FCGI-0.70.tar.gz# cd FCGI-0.70# perl Makefile.PL# make# make install2. 安装 IO 和 IO::ALL模块# wget http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/IO-1.25.tar.gz# tar .........【阅读全文】
发布时间:2015-10-28 09:17:10
有时候需要在一个目录下的缩影文件查找含有指定字符串的文件 及字符串在文件中的定位Grep –r “pattern” .grep –r –exclude=.svn “pattern” . 负略主目录下某个目录prunefind . –path “*/.svn” –prune –o –print | xargs grep “CodeType” -n grep-A4 -B4 -r XXX * .........【阅读全文】