求助,在pt_shell进入后,如何将运行的log保存下来
时间:10-02
整理:3721RD
点击:
求助,如题
之前一直是用pt_shell -f pt.tcl | tee pt.log 来把pt.tcl运行的结果保存在log中
问题,但是如果我已经输入了pt_shell
然后在source pt.tcl。应该怎么把log保存下来?
之前一直是用pt_shell -f pt.tcl | tee pt.log 来把pt.tcl运行的结果保存在log中
问题,但是如果我已经输入了pt_shell
然后在source pt.tcl。应该怎么把log保存下来?
source -echo -verbose pt.tcl
小编你好,试了你的方法,但是我感觉这么做只能将结果显示在terminal中,我想将运行过程的命令和警告或者错误显示在一个文件中,比如pt.log。
redirect -tee 试试看?
另外小编的意思是 "source -echo-verbose script.tcl > your.log" 吧?
你不是已经 pt_shell -f pt.tcl | tee pt.log 了吗?
pt_shell
source pt.tcl > pt.log
log文件前还可以加路径,将log文件放到指定的目录下