3dtrial/tinyrender1/run.sh

12 lines
191 B
Bash
Raw Normal View History

2024-07-23 23:37:02 +00:00
#!/bin/sh
2024-07-24 00:48:49 +00:00
if [ $# -ne 1 ]; then
echo "You must pass the basename for the .prof and .ppm"
exit 1
fi
2024-07-24 00:19:03 +00:00
echo "Building"
go build
echo "Running"
2024-07-24 00:48:49 +00:00
./tinyrender1 "-cpuprofile=$1.prof" >"$1.ppm"