Answers for "bucle infinito bash"

0

bucle infinito bash

#!/bin/bash
while :
do
	echo "Presiona [CTRL+C] para parar..."
	sleep 1
done
Posted by: Guest on February-01-2022

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language