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 中声明一个变量,如下所示:var="foobar"。它只需要编写完全相同的东西,就像我在 shell 中手动编写它一样。
感谢帮助,因为这对我有很大帮助!我在 shell 脚本方面不是很有经验:/
为此,您必须创建一个file.sh包含以下行的脚本(例如):
file.sh
var="foobar"
然后获取文件:
source file.sh
或者
. file.sh