如何将一shell脚本中的每一步命令执行结果输出到指定日志文件中

如题所述

第1个回答  2017-11-06
sh -x yourshell >logfile
第2个回答  2017-11-11
sh -x yourshell 2>&1 > logfile

相似回答