发布时间:2013-05-09 11:13:11
linux日志记录方式:tee -a aa.log #-a 表示追加grep "fdongdfd" missiles 2>>bb.log 错误输出到bb.logcat aa.txt bb.txt 1>biaozhun.txt 2>cuowu.txt 标准输出到biaozhun.txt 错误输出到cuowu.txtcat aa.txt bb.txt > error.txt 2>&1 标准输出和错误输出到error.txt0 标准输入1 标准输出2 错误输出.........【阅读全文】
发布时间:2013-05-09 11:10:06
if else:awk '{if ($5>22) print $5 " bad ";else print $5 " ok"}' aa.txtawk '{if ($5>100) {count++;print $5} else {count--; print $1}}' aa.txtif 多重判断df -h|awk '{if ($5>70) {count++;print ""} else if ($5>100) {count++;print "cc"} else { print "cc"}}'df -h|grep -P "/$"|sed 's/%//'|awk '{i.........【阅读全文】
发布时间:2013-05-09 11:06:34
mount -t cifs -o username=test/birdman //192.168.1.3/bash /home/birdman/shell/bash/其中test 是域,birdman 是用户名......【阅读全文】