Answers for "infinite while loop in shell script run an application file after specified time"

2

bash endless loop

#!/bin/bash
while true
do
	echo "Press [CTRL+C] to stop.."
	sleep 1
done
Posted by: Guest on May-19-2020

Code answers related to "infinite while loop in shell script run an application file after specified time"

Browse Popular Code Answers by Language