- 다른 뜻에 대해서는 wait 문서를 참조하십시오.
1 개요[ | ]
- 리눅스 wait
- 백그라운드 프로세스의 실행이 끝나기까지 대기하는 리눅스 명령어
2 실습[ | ]
Console
Copy
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 참고[ | ]
편집자 Jmnote Jmnote bot
로그인하시면 댓글을 쓸 수 있습니다.