指定文件描述符号?

我的理解是,当使用open()打开一个文件时,无法控制操作系统分配的文件描述符(整数).那么如何在bash shell中使用类似的命令来分配特定的文件描述符

exec 5>&1

(我想我可以通过阅读bash来源找到…)

解决方法

我相信你是对的,有时文件描述符可能已经在使用中.我从 http://tldp.org/LDP/abs/html/io-redirection.html#FTN.AEN17716得到了这个

“使用文件描述符5可能会导致问题.当Bash创建子进程时,与exec一样,子进程继承fd 5(请参阅Chet Ramey的归档电子邮件,SUBJECT: RE: File descriptor 5 is held open).最好单独保留这个特定的fd.”

对此的解决方案在bash手册的第3.6节第2节中有详细说明.

Each redirection that may be preceded by a file descriptor number may instead be
preceded by a word of the form {varname}. In this case,for each redirection operator
except >&- and <&-,the shell will allocate a file descriptor greater than 10 and assign it to {varname}. If >&- or <&- is preceded by {varname},the value of varname defines the file descriptor to close.

例如

#!/bin/bash

exec {NEW_STDOUT}>&1
echo "Hello" >&$NEW_STDOUT
exec {NEW_STDOUT}>&-

相关文章

用的openwrt路由器,家里宽带申请了动态公网ip,为了方便把2...
#!/bin/bashcommand1&command2&wait从Shell脚本并行...
1.先查出MAMP下面集成的PHP版本cd/Applications/MAMP/bin/ph...
1、先输入locale-a,查看一下现在已安装的语言2、若不存在如...
BashPerlTclsyntaxdiff1.进制数表示Languagebinaryoctalhexa...
正常安装了k8s后,使用kubect工具后接的命令不能直接tab补全...