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.
由于各种平台(Linux、SUN)中 tclsh 的路径不同,任何人都知道如何在 Tcl 代码中调用 tclsh?
例如在太阳:
#!/usr/bin/sun/tclsh
在 Linux 中:
#!/usr/bin/linux/tclsh
如何使用相同的 Tcl 代码并在上述两个路径中执行?
使用env(1)as
env(1)
#!/usr/bin/env tclsh
另请阅读shebang文章。