Answers for "infinite loop bash"

4

infinite loop bash

#!/bin/bash
while :
do
	echo "Press [CTRL+C] to stop.."
	sleep 1
done
Posted by: Guest on June-16-2021
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
1

infinite loop bash

while :; do echo 'Hit CTRL+C'; sleep 1; done
Posted by: Guest on June-16-2021
0

infinite loop bash

$ echo Pinguin | grep --color=always -P '(?<=Pin)(?=guin)'
Posted by: Guest on July-02-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language