我想使用一个bash变量来表示一个文件描述符,像这样:
id=6 file=a exec $id<>$file
-bash: exec: 6: not found
那么,如何使用变量来指示exec命令中的文件描述符?
您必须使用eval并将整个表达式置于引号中.
原文链接:https://www.f2er.com/bash/386479.htmleval "exec $id<>$file"
并且每次要使用$id时都这样做.