PowerShell的新手在这里。从当前进程中运行新脚本而不创建子shell的最佳方法是什么?在Bash中,您可以通过以下方式进行操作:
source script # Executes the commands in script within the current shell
要么
exec script # Same as source, except it completely replaces the current process with script
在PowerShell中有与此等效的功能吗?