Câu trả lời:
chờ đợi là một lệnh tích hợp BASH. Từ 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.
giấc ngủ không phải là một lệnh tích hợp sẵn. Nó là một tiện ích trì hoãn trong một khoảng thời gian xác định.
Các sleep
lệnh có thể hỗ trợ chờ đợi ở các đơn vị khác nhau của thời gian. GNU coreutils 8.4 man sleep
nói:
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
chỉ trì hoãn lớp vỏ trong một vài giây nhất định.
wait
làm cho vỏ chờ cho công việc nhất định. ví dụ:
workhard &
[1] 27408
workharder &
[2] 27409
wait %1 %2
trì hoãn shell cho đến khi cả hai quá trình con kết thúc
wait %1 %2
hoặc wait 27408 27409
đơn giản wait
nếu không có quá trình nền khác. Trong trường hợp này, bạn đang cố chờ đợi PID 1 (init) và PID 2 ([di chuyển / 0] trên Linux của tôi), nhưng bạn sẽ nhận được thông báo lỗi, như: -bash: wait: pid 1 is not a child of this shell
và trả về mã thoát 127
.
wait 60
đợi công việc 60 kết thúc