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