ascii-photobooth/exec-cycle.sh

15 lines
190 B
Bash
Executable File

#/bin/bash
while true; do
clear
echo "Press any key to capture image"
guvcview &> /dev/null &
read -n 1
killall guvcview
./webcam2ascii.sh
read -n 1
done