8 lines
189 B
Bash
8 lines
189 B
Bash
#!/bin/bash
|
|
cd /home/fabian/Terminator
|
|
set +e
|
|
bash -x ./TERMINATOR.sh train-tts > /tmp/term_debug.log 2>&1
|
|
echo "EXIT=$?"
|
|
echo "--- LAST 50 LINES OF TRACE ---"
|
|
tail -50 /tmp/term_debug.log
|