如何参考。来自另一个 powershell 脚本的值?
假设我有 2 个 powershell 脚本,test1.ps1 和 test2.ps1
#test1.ps1
$a="test1"
##################
#test2.ps1
echo $a
如何参考。 test1.ps1 中的 test2.ps1 中的 $a?
suppose i have 2 powershell scripts, test1.ps1 and test2.ps1
#test1.ps1
$a="test1"
##################
#test2.ps1
echo $a
how to ref. $a in test2.ps1 from test1.ps1?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在脚本 1 中:
In Script 1: