python3 -m smtpd -n -c DebuggingServer localhost:2525
但是,如果我运行:
python3 -m smtpd -n -c DebuggingServer localhost:2525 > mail.log
然后给它发一封邮件,什么也不写邮件.log直到我ctrl+c
如果我这么做:
python3 -m smtpd -n -c DebuggingServer localhost:2525 | cat
python3 -m smtpd -n -c DebuggingServer localhost:2525 | tee mail.log
是为了阻止它试图缓冲?
同样的事情也发生在蟒蛇身上