리눅스 wait

  다른 뜻에 대해서는 wait 문서를 참조하십시오.

1 개요[ | ]

리눅스 wait

2 실습[ | ]

testuser@ubuntu:~$ sleep 10 &
[1] 17931
testuser@ubuntu:~$ sleep 5 &
[2] 17932
testuser@ubuntu:~$ jobs
[1]-  Running                 sleep 10 &
[2]+  Running                 sleep 5 &
testuser@ubuntu:~$ wait
[1]-  Done                    sleep 10
[2]+  Done                    sleep 5
testuser@ubuntu:~$

3 같이 보기[ | ]

4 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}