Differenza tra attesa e sonno


Risposte:


361

waitattende che il processo finisca; sleepdorme per un certo numero di secondi.


34
@DomainsFeatured: No, wait 60attende il completamento del lavoro 60
Colin Pitrat

115

wait è un comando integrato BASH. Da man bash:

    wait [n ...]
        Wait  for each specified process and return its termination sta-
        tus.  Each n may be a process ID or a job  specification;  if  a
        job  spec  is  given,  all  processes in that job's pipeline are
        waited for.  If n is not given, all currently active child  pro-
        cesses  are  waited  for,  and  the return status is zero.  If n
        specifies a non-existent process or job, the  return  status  is
        127.   Otherwise,  the  return  status is the exit status of the
        last process or job waited for.

sleep non è un comando incorporato della shell. È un'utilità che ritarda per un determinato periodo di tempo.

Il sleepcomando può supportare l'attesa in varie unità di tempo. GNU coreutils 8.4 man sleepdice:

    SYNOPSIS
        sleep NUMBER[SUFFIX]...

    DESCRIPTION
        Pause for NUMBER seconds.  SUFFIX may be s for seconds (the default),
        m for minutes, h for hours or d for days.  Unlike most  implemen-
        tations  that require NUMBER be an integer, here NUMBER may be an arbi-
        trary floating point number.  Given two or more  arguments,  pause  for
        the amount of time specified by the sum of their values.

90

sleep ritarda solo la shell per il dato numero di secondi.

waitfa aspettare la shell per il lavoro dato. per esempio:

workhard &
[1] 27408
workharder &
[2] 27409
wait %1 %2

ritarda la shell fino al termine di entrambi i sottoprocessi


24
IMHO lo è wait %1 %2o wait 27408 27409o semplicemente waitse non esiste un altro processo in background. In questo caso stai cercando di attendere PID 1 (init) e PID 2 ([migrazione / 0] sul mio Linux), ma otterrai un messaggio di errore, come: -bash: wait: pid 1 is not a child of this shelle restituisce il codice di uscita 127.
Vero

11
Quindi a partire da 2 anni nessuno se ne è reso conto. Hai assolutamente ragione, modificherà la risposta ...
pbhd
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.