Odpowiedzi:
wait to wbudowane polecenie BASH. Od 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 nie jest wbudowanym poleceniem powłoki. Jest to narzędzie, które opóźnia o określony czas.
sleep
Komenda może wspierać oczekiwania w różnych jednostkach czasu. GNU coreutils 8.4 man sleep
mówi:
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.
sleep
po prostu opóźnia powłokę o podaną liczbę sekund.
wait
sprawia, że powłoka czeka na dane zadanie. na przykład:
workhard &
[1] 27408
workharder &
[2] 27409
wait %1 %2
opóźnia powłokę do momentu zakończenia obu podprocesów
wait %1 %2
lub wait 27408 27409
po prostu, wait
jeśli nie ma innego procesu w tle. W takim przypadku próbujesz poczekać na PID 1 (init) i PID 2 ([migracja / 0] w moim systemie Linux), ale pojawi się komunikat o błędzie, na przykład: -bash: wait: pid 1 is not a child of this shell
i zwróci kod wyjścia 127
.
wait 60
czeka na zakończenie zadania 60