TLG_JoinCaptchaBot/tools/check_errors

10 wiersze
213 B
Bash

#!/usr/bin/env bash
# Actual script directory path
DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null 2>&1 && pwd)"
# Check and shows errors
cat -n $DIR/../output.log | grep -e "Traceback" -A 15 -B 5
exit 0