为什么这个 shell 脚本将自己称为 python 脚本?

发布于 2024-10-30 10:15:44 字数 733 浏览 3 评论 0原文

显然这个 shell 脚本将自己称为 Python 脚本:(

#!/bin/sh
## repo default configuration
##
REPO_URL='git://android.git.kernel.org/tools/repo.git'
REPO_REV='stable'

magic='--calling-python-from-/bin/sh--'
"""exec" python -E "$0" "$@" """#$magic"
if __name__ == '__main__':
  import sys
  if sys.argv[-1] == '#%s' % magic:
    del sys.argv[-1]
del magic
:
:

整个脚本: https://android.googlesource.com/tools/repo/+/v1.0/repo

任何人都可以解释

  • 这样调用它的目的吗?
    为什么不在第一行添加 #!/usr/bin/env python 以便对其进行解释 从一开始就作为Python脚本?

  • 添加那个神奇的最后一个命令行参数(后来在Python代码的开头被删除)的目的是什么?

Obviously this shell script is calling itself as a Python script:

#!/bin/sh
## repo default configuration
##
REPO_URL='git://android.git.kernel.org/tools/repo.git'
REPO_REV='stable'

magic='--calling-python-from-/bin/sh--'
"""exec" python -E "$0" "$@" """#$magic"
if __name__ == '__main__':
  import sys
  if sys.argv[-1] == '#%s' % magic:
    del sys.argv[-1]
del magic
:
:

(Whole script: https://android.googlesource.com/tools/repo/+/v1.0/repo)

Can anyone explain

  • the purpose of calling it this way?
    Why not having #!/usr/bin/env python in the first line so it gets interpreted
    as Python script from the beginning?

  • the purpose of adding that magic last command line argument, that is removed afterwards in the beginning of the Python code?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

浅语花开 2024-11-06 10:15:44

你的第一个问题:这样做是为了修复不处理 #! 的 UNIX 系统(或其模拟系统)。正确或完全正确。高雅的艺术是制作一个在 shell 和其他语言中都正确的脚本。对于 perl,人们经常会看到这样的情况:

exec "/usr/bin/perl"
   if 0;

exec 由 shell 解释并执行,但是 perl 解释器看到一个条件语句 (.... if ...) 并且不执行任何操作,因为条件为 false。

Your first question: this is done to fix unix systems (or emulations thereof) that do not handle the #! correctly or at all. The high art is to make a script that is correct in shell as well as in the other language. For perl, one often sees something like:

exec "/usr/bin/perl"
   if 0;

The exec is interpreted and executed by the shell, but the perl interpreter sees a conditional statement (.... if ...) and does nothing because the condition is false.

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