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.
我正在使用一些需要运行的 MPI 代码mpirun。
mpirun
我正在使用一个已经存在的 shell 脚本,我想添加到一个已经存在的行。
所以梦想是:
app=mpirun $(app)
我知道可以使用 += 附加到变量,但我可以在前面添加吗?
如果app应该成为(或保持)一个简单的扩展变量,那么以下内容就足够了:
app
app := mpirun $(app)