Answers for "while infinite loop in shell script"

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 "while infinite loop in shell script"

Browse Popular Code Answers by Language