HexaCone/tools/mkseqs.sh
2026-01-14 14:01:20 +01:00

25 lines
355 B
Bash
Executable File

#!/bin/bash
source tools/config.sh
source tools/fonctions.sh
echo "MKSEX ( $* )" | tee -a WS/log
sleep 1
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 30
fi
visual_sleep "next render is comming" 20
done