从另一个脚本调用时获取当前脚本名称

发布于 2024-11-26 21:04:30 字数 371 浏览 2 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

对你的占有欲 2024-12-03 21:04:30

这是因为您正在采购 callee.sh,即 。被调用者.sh

因此,如果您可以执行 callee.sh (并且不需要在 callee.sh 中设置的环境变量在 caller.sh 中处于活动状态),请将您的调用者脚本更改为

#!/bin/ksh
callee.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

#!/bin/ksh
callee.sh

I hate to say it, but I think the ksh people would say 'Working as designed'.

铜锣湾横着走 2024-12-03 21:04:30

callee.sh 脚本中的以下命令对我有用。

echo $(basename ${BASH_SOURCE[0]})

Following command in callee.sh script worked for me.

echo $(basename ${BASH_SOURCE[0]})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文