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.
我在 shell 中设置了一些变量,因为我一直都需要它们。如何制作一个脚本,我在设置了变量的同一个 shell 上调用访问在 shell 中定义的变量,而不将它们显式地作为参数传递?
您只需使用shell 脚本中的分配来获取脚本,如下所示:
. /path/to/settings # Dot, blank, name of file.
这将执行当前 shell 中的设置内容(与启动子 shell 不同,在子 shell 结束后分配丢失。)