mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-06 00:10:59 +00:00
14 lines
425 B
Bash
14 lines
425 B
Bash
|
. ./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
|