Hum*_*rey 9 python windows django command-line stdout
我正在尝试将manage.py的输出重定向到文本文件,但只有一些输出被重定向到文本文件.如何将所有输出重定向到文本文件?
我的命令提示符:
C:\Development\web-py\p1st2\pianos1st-system>python manage.py test > test_results.txt
.....................................................................................................................
----------------------------------------------------------------------
Ran 117 tests in 2.026s
OK
我的test_results.txt文件:
Creating test database for alias 'default'...
Destroying test database for alias 'default'...
我正在使用Windows 7 32位SP1和Django SVN.
Dol*_*cci 22
某些类型的控制台消息将绕过输出重定向(或使用">"调用的任何内容).我注意到sys.stderr.write()就是这样做的.
最后添加"2>&1"有助于:
python manage.py test purchaseplans > test_results.txt 2>&1
编辑:正在进行的说明:http:
//en.wikipedia.org/wiki/Redirection_ (computing)#Redirecting_to_and_from_the_standard_file_handles