mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-22 10:00:33 +00:00
9c6e9083ed
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@30123 a592a061-630c-0410-9148-cb99ea01b6c8
17 lines
451 B
Bash
Executable File
17 lines
451 B
Bash
Executable File
#!/bin/bash
|
|
# This script starts LyX, and restarts LyX if it is closed
|
|
# it logs all output, including backtraces to development/keystest/out/GDB
|
|
|
|
#rename other windows to avoid confusion.
|
|
wmctrl -N __renamed__ -r lyx
|
|
wmctrl -N __renamed__ -r lyx
|
|
wmctrl -N __renamed__ -r lyx
|
|
wmctrl -N __renamed__ -r lyx
|
|
|
|
while true
|
|
do
|
|
( (echo SECONDS: `date +%s`
|
|
(echo "run
|
|
bt" ; yes q) | gdb src/lyx 2>&1) | strings| tee -a development/keystest/out/GDB)
|
|
done
|