혼자 정리
pipex 관련 찾아본 자료 본문
https://www.gnu.org/software/bash/manual/html_node/Redirections.html
https://architectophile.tistory.com/10 <- 필요한 내용 많이 있음
http://www.rozmichelle.com/pipes-forks-dups/ 위 블로그 시리즈 1, 2, 3번 글의 원본
아래 두 명령어는 file을 입력으로 사용해서 cmd에 전달한 결과를 가져옴. (<문자와 리다이렉트할 파일이 한 묶음이라고 생각하면 될듯)
$ cmd < file
$ < file cmd
다음 명령어는 위의 명령어를 입력으로 해서 output이라는 파일에 출력한다(파일이 없는 경우 생성한 후 파일에 내용 기록. 파일이 이미 있다면 파일의 내용을 비우고 기록)
$ < file cmd > output
$ cmd < file > output
wait함수에 대해 공부 -> 부모/자식 프로세스 용어 -> 알아야 할 것 같아서 검색해보다 다음의 블로그 통해 프로세스에 대해 간략히 공부
https://reakwon.tistory.com/45
https://www.thegeekstuff.com/2013/07/linux-process-life-cycle/
https://www.tutorialspoint.com/process-vs-parent-process-vs-child-process
https://reakwon.tistory.com/104
https://tldp.org/LDP/lpg/node11.html
Advanced Programming in the UNIX Environment, 3rd Edition
Rago, Stephen A., Stevens, W. Richard
<- 책 강추 필요한 내용은 거의 다 있는 느낌
'42 > pipex' 카테고리의 다른 글
pipex 허용 함수 정리(모르는 것, 필요한 부분 위주로) (0) | 2021.06.16 |
---|---|
UNIX시스템의 프로그램과 프로세스 개괄 (0) | 2021.06.14 |