Files
Fortraneries/GravityField/runme.sh
2026-06-02 18:20:09 +02:00

20 lines
277 B
Bash
Executable File

#!/bin/bash
set -e # stop on error
make animation
echo err = $?
LOG="WS/log.animation"
date >> $LOG
rm WS/colmap/* WS/nanim/*
time ./animation | tee -a $LOG
./encode.sh WS/nanim/ gravity-nanim.mp4
./encode.sh WS/colmap/ gravity-colmap.mp4
ls -rtl *.mp4 >> $LOG