shell 脚本 + 在脚本内添加标准输出的 PATH

shell 脚本 + 在脚本内添加标准输出的 PATH

通常如果我们想将脚本输出重定向到文件,我们只需这样做

   /etc/create_connection.sh > file.debug.txt  

或者

   /etc/create_connection.sh | tee –a  file.debug.txt  

但我想要的是在脚本中添加 /etc/create_connection.sh > file.debug.txt ,但我不确定是否可行以及如何操作?

所以当我跑步的时候

  /etc/create_connection.sh 

我需要将所有标准输出写入 file.debug.txt
,那么我需要在脚本中添加什么才能做到这一点?

答案1

exec > file.debug.txt一开始就简单写一下。

关联:http://www.faqs.org/docs/abs/HTML/io-redirection.html

相关内容