7 lines
121 B
Bash
Executable File
7 lines
121 B
Bash
Executable File
if [ -z $1 ]
|
|
then
|
|
echo "please specify scene"
|
|
else
|
|
dist/build/raytrace/raytrace $1 +RTS -s -N8 && eog out.png
|
|
fi
|