C shell 中 set 命令的 Bash 等价物是什么?

What is the Bash equivalent of the set command in C shell?

我需要 运行 Bash shell 中的这个脚本,因为这是我在我的高性能计算集群上唯一可以访问的 shell目前的组织。

What is the Bash equivalent of the set command in C shell?

等同于给变量赋值。没有专门的命令。

# set var = 'stuff'
var='stuff'