snoopy/run.sh

17 lines
177 B
Bash
Raw Normal View History

2020-06-01 00:13:00 +01:00
bin=./flark
output=image.ppm
viewer=$(which feh)
# generate makefile
cmake .
# build
make
# generate output image
rm $output
$bin >> $output
#display image
$viewer $output