fifo를 Python의 stdin으로 리디렉션
$ mkfifo mypipe $ echo "hello redirection" > mypipe $ cat < mypipe hello redirection Python을 사용하여 위의 작업을 수행하려고 할 때 문제가 있습니다. # pyecho.py with open("/dev/stdin", "r") as f: print(f.read()) $ python3 pyecho.py < mypipe 파이프에 두 번 쓰지 않으면 종료되지 않습니다. $ echo "hello redire...