PostgreSQL日志折行处理

$ cat logfile | awk '{if ($0 !~  "^[\t]") printf("\n%s" ,$0); else printf $0}'
$ cat logfile | perl -e 'while(<>){ if($_ !~ /^\t/ig) { chomp; print "\n",$_;} else {chomp; print;}}'


你可能感兴趣的:(PostgreSQL,日志折行)