Chinaunix首页 | 论坛 | 博客
  • 博客访问: 47755
  • 博文数量: 17
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 145
  • 用 户 组: 普通用户
  • 注册时间: 2011-05-31 09:37
文章分类

全部博文(17)

文章存档

2016年(3)

2015年(14)

我的朋友

发布时间:2015-11-18 14:02:50

1. PIPESTATUS    数据处理类shell脚本中可能会多次用到 “cat xxx|awk yyy”类似的管道命令,判断返回值时不能仅仅用$?来判断返回值,最好使用PIPESTATUS获取管道中所有命令的返回码好处:第一条命令失败后就能提前发现问题,避免问题被遗漏或置后发现。用法:PIPESTATUS 是一个数组,第.........【阅读全文】

阅读(949) | 评论(0) | 转发(0)

发布时间: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......【阅读全文】

阅读(949) | 评论(0) | 转发(0)

发布时间: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 .........【阅读全文】

阅读(1007) | 评论(0) | 转发(0)

发布时间: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 * .........【阅读全文】

阅读(938) | 评论(0) | 转发(0)
给主人留下些什么吧!~~
留言热议
请登录后留言。

登录 注册