Redirection of python script output to file not working
Advertisements I have a simple python file on a Linux VM import time while True: print("test") time.sleep(10) which I start with python test.py > test.log but even after a longer time that file is empty -rwxrwx— 1 root vboxsf 0 Sep 29 07:57 test.log Is the output cached or something? How can I make the… Read More Redirection of python script output to file not working