日志分析常见方法

集合操作

awk_collect

cat f1 f2|sort|uniq -d > r.log
cat f1 f2|sort|uniq -d > t.log
cat f1 t.log |sort|uniq -u > r.log
cat f1 f2|sort -u > r.log
cat f1 f2|sort > r.log

查找文件中的内容

grep "search content" filename1 filename2 filename3 
grep "search content" *.sql
grep -n "v\$temp_space_header"
grep -i "V\$TEMP_SPACE_HEADER"
ps -ef|grep proxy|grep -v grep 
grep -c "v\$temp_space_header"
grep -r "v\$temp_space_header"
grep -H -r "v\$temp_space_header"
grep -w "ORB" filename
egrep -w -R 'word1|word2' ~/klbtmp

参考