如下,我只希望命令echo "this is to stdout"
输出到我的屏幕而不是文件ok.log
,我该怎么办?
我搜索了exec
shell命令的用法,但没有结果,请指教
[root@161 tmp]# bash --version
GNU bash, version 4.2.46(1)-release (x86_64-redhat-linux-gnu)
Copyright (C) 2011 Free Software Foundation, Inc.
[root@161 tmp]# cat 2.sh
#!/bin/bash
exec 1>ok.log
exec 2>error.log
#exist dir
ls /home/
#no exist dir
ls /etca/
#to stdout
echo "this is to stdout"
#other cmds
...
您可以在重定向之前将原始标准输出保存到临时文件描述符。在此示例中,我使用文件描述符 3。