“Bash loop tak terbatas” Kode Jawaban

Loop Bash Tanpa Akhir

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

Bash loop tak terbatas

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

Bash loop tak terbatas

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

Unsightly Unicorn

Bash loop tak terbatas

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

infinity loop

while true; do
  whatever you want to do
done

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

Jawaban yang mirip dengan “Bash loop tak terbatas”

Pertanyaan yang mirip dengan “Bash loop tak terbatas”

Lebih banyak jawaban terkait untuk “Bash loop tak terbatas” di Shell/Bash

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya