대기와 수면의 차이점


답변:


360

wait프로세스가 완료되기를 기다립니다. sleep특정 시간 (초) 동안 대기합니다.


34
@DomainsFeatured : 아니오, wait 60작업 (60)에 대한 대기 완료
콜린 Pitrat

115

wait는 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은 쉘 내장 명령이 아닙니다. 지정된 시간 동안 지연되는 유틸리티입니다.

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.

90

sleep 주어진 시간 (초) 동안 쉘을 지연시킵니다.

wait쉘이 주어진 작업을 기다립니다. 예 :

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

두 서브 프로세스가 완료 될 때까지 쉘을 지연시킵니다.


24
IMHO wait %1 %2또는 다른 백그라운드 프로세스가없는 경우 wait 27408 27409간단 wait합니다. 이 경우 PID 1 (초기화) 및 PID 2 (내 Linux의 경우 [migration / 0])를 기다리려고하지만 다음 -bash: wait: pid 1 is not a child of this shell과 같은 오류 메시지가 표시 되며 종료 코드를 반환합니다 127.
TrueY

11
그래서 2 년 동안 아무도 그것을 깨닫지 못했습니다. 당신은 절대적으로 맞습니다, 답변을 편집 할 것입니다 ...
pbhd
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.