摘要:
root #df -h / 阅读全文
摘要:
set -o pipefail if [ $? -ne 0 ] then fi 阅读全文
摘要:
BASH SHELL中,通常使用 $? 来获取上一条命令的返回码。 对于管道中的命令,使用$?只能获取管道中最后一条命令的返回码,例如 下面的例子中/not/a/valid/filename是一个不存在的文件 cat /not/a/valid/filename|cat 第一个cat失败,第二个cat 阅读全文
摘要:
parmfile='abc 123' RunProgram programname "${parmfile}" -->传入abc 123 RunProgram programname '${parmfile}' -->传入${parmfile} RunProgram programname ${pa 阅读全文
摘要:
awk '{OFS="";print(substr($0,1,6),substr($0,74,18),substr($0,15,3),substr($0,18,8))}' inputfile| sort -k1.1,1.24 > outputfile 阅读全文
摘要:
gsub函数有点类似于sed查找和替换。它允许替换一个字符串或字符为另一个字符串或字符,并以正则表达式的形式执行。第一个函数作用于记录$0,第二个gsub函数允许指定目标,然而,如果未指定目标,缺省为$0。index(s,t)函数返回目标字符串s中查询字符串t的首位置。length函数返回字符串s字 阅读全文