“Infinite Loop Bash” Code-Antworten

Bash Endless Loop

#!/bin/bash
while true
do
	echo "Press [CTRL+C] to stop.."
	sleep 1
done
Super Sheep

Infinite Loop Bash

 while :; do echo 'Hit CTRL+C'; sleep 1; done
slohobo

Infinite Loop Bash

$ echo Pinguin | grep --color=always -P '(?<=Pin)(?=guin)'

Unsightly Unicorn

Infinite Loop Bash

########################

infinity loop

while true; do
  whatever you want to do
done

infinity loop 2
while :
do
 something to do
done
####################
Hutch Polecat

Ähnliche Antworten wie “Infinite Loop Bash”

Fragen ähnlich wie “Infinite Loop Bash”

Weitere verwandte Antworten zu “Infinite Loop Bash” auf Shell/Bash

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen