Answers for "infinite loop bash script example"

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

Browse Popular Code Answers by Language