mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 11:23:45 +00:00
81dea0164c
http://www.mail-archive.com/lyx-devel@lists.lyx.org/msg156659.html git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@32740 a592a061-630c-0410-9148-cb99ea01b6c8
14 lines
425 B
Bash
Executable File
14 lines
425 B
Bash
Executable File
. ./shared_variables.sh
|
|
OUT=$ROOT_OUTDIR
|
|
for f in `ls $OUT/*/final/*pure`
|
|
do
|
|
echo file_ $f
|
|
if [ ! -e $f.replay ]
|
|
then
|
|
echo replaying $f for screenshot
|
|
#(SCREENSHOT_OUT="auto" ./doNtimes.sh 3 ./reproduce.sh $f ; echo $f ; ./list_all_children.sh kill $$ ) 2>&1 | tee $f.screenshot-log
|
|
(SCREENSHOT_OUT="auto" ./doNtimes.sh 9 ./reproduce.sh $f ; echo $f ) 2>&1 | tee $f.screenshot-log
|
|
echo replayed $f for screenshot
|
|
fi
|
|
done
|