20 Kasım 2018 Salı

sleep komutu

Giriş
Açıklaması şöyle.
Given two or more arguments, pause for the amount of time specified by the sum of their values.
Açıklaması şöyle.
Unlike most implementations that require NUMBER be an integer, here NUMBER may be an arbitrary floating point number.
Örnek
Şöyle yaparız.
sleep 7.5m
Örnek
Şöyle yaparız.
$ sleep 3d 5h 7m 30.05s &
[1] 7321
Örnek
Her 1 saniyede bir bir iş yapmak için şöyle yaparız.
while true; do
  sleep 1 &
  ...your stuff here...
  wait # for sleep
done
Örnek
Bir komutu gecikme ile çalıştırmak için şöyle yaparız.
$ sleep 10 && echo "This is a test"

Hiç yorum yok:

Yorum Gönder