获取 csh 脚本时如何获取 `__FILE__`
我有一个脚本,用于在调用 csh shell 中设置一些环境变量。其中一些变量取决于脚本的位置。
如果该文件是正确的 csh 脚本,我可以使用 $0 访问 __FILE__ 但如果我使用源运行该脚本,它只会告诉我 csh 或 tcsh。
由于我使用它在父 shell 中设置变量,因此我必须使用 source。
该怎么办?
I have a script that is used to set some env vars in the calling csh shell. Some of those variables depend on the location of the script.
If the file is a proper csh script, I can use $0 to access __FILE__
but if I run the script using source, it just tells me csh or tcsh.
Since I'm using this to set vars in the parent shell, I have to use source.
What to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果您在文件的第一行访问
$_
,它将包含文件的名称(如果它是来源的)。如果直接运行,则$0
将包含名称。If you access
$_
on the first line of the file, it will contain the name of the file if it's sourced. If it's run directly then$0
will contain the name.这很难阅读,但实际上是有效的:
如果您的脚本名为 test.csh
/usr/sbin/lsof +p $$ | \grep -oE /.\*test.csh
This is hard to read, but is actually works:
If your script is named test.csh
/usr/sbin/lsof +p $$ | \grep -oE /.\*test.csh
这个答案描述了
lsof
和一点 grep 魔法似乎是唯一站得住脚的东西有机会处理 csh/tcsh 下的嵌套源文件。如果您的脚本名为
source_me.tcsh
:this answer describes how
lsof
and a bit of grep magic is the only thing that seems to stand a chance of working for nested sourced files under csh/tcsh.If your script is named
source_me.tcsh
:当在子 shell 中调用源代码时,
$$
不起作用。BASH_PID
仅适用于 bash。我发现以下方法效果更好一些:
第一行查找正在获取文件的当前进程的 pid。这来自 为什么 $$ 返回与父进程的 id 相同?。第二行找到第一个(希望是唯一的)为读取常规文件而打开的 FD。这来自上面的 engtech。
The
$$
does not work when one calls the source within a sub-shell.BASH_PID
only works in bash.I found the following works a bit better:
First line finds the pid of the current process that is sourcing the file. This came from Why is $$ returning the same id as the parent process?. The second line finds the first (and hopefully only) FD opened for read of a regular file. This came from engtech above.