snoopy/run.sh

17 lines
177 B
Bash
Raw Normal View History

2020-06-01 01:13:00 +02: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