调用我的 bash 脚本而不是使用 Source 命令的简短方法

调用我的 bash 脚本而不是使用 Source 命令的简短方法

我的脚本使用并修改 shell 变量。我需要始终使用:

source myscript

是否有更短的方法来调用此脚本并让它修改当前 shell 的环境?

可以通过使用中描述的函数来优雅地完成这个答案,但我需要一种更快的方法。

答案1

您可以用作.的简写source。从bash(1)手册页:

.  filename [arguments]
source filename [arguments]

Read and execute commands from filename in the current shell environment and return
the exit status of the last command executed from filename.

相关内容