请解释一下。 ./ab_project_setup.ksh $(pwd) 语句
请解释一下这句话的含义
. ./ab_project_setup.ksh $(pwd)
Please explain the meaning of this statement
. ./ab_project_setup.ksh $(pwd)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
添加 Alberto 的答案:
此处是一个小演示:
Adding to Alberto's answer:
Here is a small demo:
后面的内容
表示 source您要获取的文件名
将扩展为当前工作目录并作为参数传递给脚本。
means source what is following
the name of the file you are sourcing
expands to the current working directory and is passed as argument to the script.