exec 3>&1 # Save current "value" of stdout.
ls -l 2>&1 >&3 3>&- | grep bad 3>&- # Close fd 3 for 'grep' (but not 'ls').
# ^^^^ ^^^^
exec 3>&- # Now close it for the remainder of the script.
我得到第3行,fd 3正在关闭.
怀疑:第一行将fd 3重定向到stdout,全球……对吗?
问题:第二行发生了什么?如果可能,请提供详细说明.
最佳答案
这可能是我发现的最好的Redirection Tutorial.每当我看到一些时髦的重定向时,我会参考这个来帮助我完成它.