Answers for "echo statement endless loop bash"

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 "Shell/Bash"

Browse Popular Code Answers by Language