Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 bourne 兼容的 shell 中,{ list; }语法会导致 shell 在执行之前读取完整的命令列表,而无需打开新的 shell。csh有类似的东西吗?
{ list; }
谢谢。
我认为csh只有括号。但是他们创建了一个子shell(除了对命令进行分组),就像在 Bourne 风格的 shell 中一样。
csh
正如丹尼斯所说,没有直接的等价物。'eval' 可能值得一看 - 取决于你需要做什么。