在 bash 中,命名管道可以使用cat > mypipe
. 这怎么能在python中完成?这是我到目前为止所拥有的:
import subprocess
import os
if not os.path.exists("/tmp/mypipe"):
os.mkfifo("/tmp/mypipe")
在 bash 中,命名管道可以使用cat > mypipe
. 这怎么能在python中完成?这是我到目前为止所拥有的:
import subprocess
import os
if not os.path.exists("/tmp/mypipe"):
os.mkfifo("/tmp/mypipe")