22 lines
310 B
Bash
Executable File
22 lines
310 B
Bash
Executable File
#!/bin/bash
|
|
|
|
source tools/config.sh
|
|
source tools/fonctions.sh
|
|
|
|
for foo in $*
|
|
do
|
|
|
|
if [ -r "$foo.pov" ] ; then
|
|
tools/mkloop.sh $foo
|
|
tools/build-ega-mp4.sh $foo
|
|
tools/build-gif89a.sh $foo
|
|
else
|
|
echo "+++ Beurking on $foo" | tee -a WS/log
|
|
sleep 10
|
|
fi
|
|
|
|
visual_sleep "next render is comming" 30
|
|
|
|
done
|
|
|