जवाबों:
प्रतीक्षा एक BASH अंतर्निहित कमांड है। से 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
आदेश समय की विभिन्न इकाइयों में इंतजार कर समर्थन कर सकते हैं। GNU Coreutils 8.4 man sleep
कहते हैं:
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
बस दिए गए सेकंड के लिए शेल को देरी करता है।
wait
दिए गए कार्य के लिए शेल का इंतजार करता है। उदाहरण के लिए:
workhard &
[1] 27408
workharder &
[2] 27409
wait %1 %2
जब तक दोनों उपप्रकार समाप्त नहीं हो जाते तब तक शेल को विलंबित करता है
wait %1 %2
या wait 27408 27409
बस wait
अगर कोई अन्य पृष्ठभूमि प्रक्रिया नहीं है। इस स्थिति में आप PID 1 (init) और PID 2 ([माइग्रेशन / 0] मेरे लिनक्स पर) के लिए प्रतीक्षा करने का प्रयास कर रहे हैं, लेकिन आपको त्रुटि संदेश मिलेगा, जैसे: -bash: wait: pid 1 is not a child of this shell
और बाहर निकलने का कोड देता है 127
।
wait 60
नौकरी खत्म होने का इंतजार 60 से