我在脚本顶部提到了下面的 cmd
exec > >(tee -a "$log_file") 2>&1
# (all remaining script part here)
shell脚本是用户交互的,所以我希望用户给出的输入也能在同一个文件中重定向。如何实现这一目标?
我在脚本顶部提到了下面的 cmd
exec > >(tee -a "$log_file") 2>&1
# (all remaining script part here)
shell脚本是用户交互的,所以我希望用户给出的输入也能在同一个文件中重定向。如何实现这一目标?