从另一个脚本调用时获取当前脚本名称
在 KornShell (ksh) 中,我有一个调用脚本列表的脚本。被调用者脚本需要知道它的文件名,以便它可以生成唯一的配置(或者任何内容都应该是唯一的)。
问题是变量 $0
始终指向调用者脚本。例如,我们有两个脚本:
caller.sh:
. callee.sh
callee.sh:
echo $0
当我执行caller.sh时,callee.sh打印“caller.sh”,而不是“callee.sh”。那么如何获取当前运行脚本的脚本文件名呢?
该脚本运行在 AIX 服务器上,因此 bash 并非始终可用。
In KornShell (ksh), I have a script that calls a list of scripts. The callee script needs to know its file name, so that it can generate unique configuration (or anything should be unique).
The problem is variable $0
always points to the caller script. For example, we have two scripts:
caller.sh:
. callee.sh
callee.sh:
echo $0
When I execute caller.sh, the callee.sh print "caller.sh", not "callee.sh". So how can I get the script file name of current running script?
The script is running on AIX servers, so bash is not available all the time.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是因为您正在采购 callee.sh,即
。被调用者.sh
。因此,如果您可以执行 callee.sh (并且不需要在 callee.sh 中设置的环境变量在 caller.sh 中处于活动状态),请将您的调用者脚本更改为
我不想这么说,但我认为 ksh人们会说“按设计工作”。
It's because you are sourcing callee.sh, i.e.
. callee.sh
.So if you can just execute callee.sh (and you don't need environment variables that are set in callee.sh to be active in caller.sh,) change your caller scritpt to
I hate to say it, but I think the ksh people would say 'Working as designed'.
callee.sh 脚本中的以下命令对我有用。
Following command in callee.sh script worked for me.