diff --git a/run.sh b/run.sh new file mode 100755 index 0000000..a4a3405 --- /dev/null +++ b/run.sh @@ -0,0 +1,16 @@ +bin=./flark +output=image.ppm +viewer=$(which feh) + +# generate makefile +cmake . + +# build +make + +# generate output image +rm $output +$bin >> $output + +#display image +$viewer $output