Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

infinite loop bash

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

infinite loop bash

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

infinite loop bash

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

infinity loop

while true; do
  whatever you want to do
done

infinity loop 2
while :
do
 something to do
done
####################
Comment

PREVIOUS NEXT
Code Example
Shell :: install prettier globaly 
Shell :: powershell script path 
Shell :: docker command not available in ubuntu wsl 
Shell :: git cheatsheet 
Shell :: how to undo a git stash 
Shell :: git configure default editor 
Shell :: One command to create a directory and file inside it linux command 
Shell :: git push all tags 
Shell :: git list remote branches 
Shell :: run rust book on terminal 
Shell :: sudo apt install ubuntu-desktop ? 
Shell :: how to add a gif to your website 
Shell :: fish add rust to path 
Shell :: pesquisar codigo commit 
Shell :: ubuntu docker-compose cannot exit 
Shell :: install rancher 
Shell :: add bootstrap to gatsby 
Shell :: checking service status in linux 
Shell :: npm install dev dependencies only 
Shell :: git get repo with composer 
Shell :: flutter devices 
Shell :: check if a variable is null in bash 
Shell :: install openvino ubuntu 
Shell :: ubuntu spotify 
Shell :: default pull settings git 
Shell :: IlluminateHttpExceptionsPostTooLargeException Ubuntu 
Shell :: npm sequelize 
Shell :: unstage files in git 
Shell :: -bash: screen: command not found 
Shell :: minikube start with docker driver 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =