mirror of
https://github.com/Phantop/dotfiles
synced 2025-08-30 10:25:05 +00:00
5 lines
144 B
Awk
5 lines
144 B
Awk
|
#!/bin/awk -f
|
||
|
/^Traceback \(most recent call last\):/ { traceback = 1 }
|
||
|
traceback { print }
|
||
|
traceback && /^[0-9]{4}-[0-9]{2}-[0-9]{2}/ { exit }
|