“Zatrzymaj się w Bash” Kod odpowiedzi

Bash Dodaj wiersz pauzy w skrypcie powłoki z poleceniem pauzy bash

read -p "Press [Enter] key to start backup..."
read -p "Press any key to resume ..."
## Bash add pause prompt for 5 seconds ##
read -t 5 -p "I am going to wait for 5 seconds only ..."
Nervous Nightingale

sh poczekaj 10 sekund

sleep .5 # Waits 0.5 second.
sleep 5  # Waits 5 seconds.
sleep 5s # Waits 5 seconds.
sleep 5m # Waits 5 minutes.
sleep 5h # Waits 5 hours.
sleep 5d # Waits 5 days.
Underlyingglitch

Bash Wait 3 SENATA

sleep .5 # Waits 0.5 second.
sleep 5  # Waits 5 seconds.
sleep 5s # Waits 5 seconds.
sleep 5m # Waits 5 minutes.
sleep 5h # Waits 5 hours.
sleep 5d # Waits 5 days.
Sal-versij

Zatrzymaj się w Bash

#pause 5 second, first method
read -t 5

#pause 5 second, second method
sleep 5s
Restu Wahyu Saputra

Pause Bash Script

function pause(){
 read -s -n 1 -p "Press any key to continue . . ."
 echo ""
}
 
## Pause it ##
pause
 
## rest of script below
Adventurous Albatross

Odpowiedzi podobne do “Zatrzymaj się w Bash”

Pytania podobne do “Zatrzymaj się w Bash”

Więcej pokrewnych odpowiedzi na “Zatrzymaj się w Bash” w Shell/Bash

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu