Linux 如何区分可执行文件还是shell脚本,调用的流程是什么样子的
Linux 如何区分可执行文件还是shell脚本,调用的流程是什么样子的。
比如说:
./script # 这个是一个shell脚本
./hello # 这个是一个C程序
linux是区分的。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
Linux 如何区分可执行文件还是shell脚本,调用的流程是什么样子的。
比如说:
./script # 这个是一个shell脚本
./hello # 这个是一个C程序
linux是区分的。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(7)
linux shell 在执行的时候,如何区分脚本,或者 elf文件?两者内容是完全不一样的,但是文件名可以是一样的。而为什么linux能区分出来?因为shell会优先调用linux execve执行,如果失败,则检测是否按照#!开头,如果是,则使用指定解释器,否则使用默认sh执行。如果都失败,则报错。
用Linux发行版自带file命令就好了.
file /bin/ls
/bin/ls: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=xxx, stripped
file /etc/rc.local
/etc/rc.local: POSIX shell script, ASCII text executable
file命令就一目了然了
运行sh a.sh,表示我使用sh来解释这个脚本,楼上已经演示了,可以不要执行权限;
如果我直接运行./a.sh,首先你会查找脚本第一行是否指定了解释器,如果没指定,那么就用当前系统默认的
shell
(大多数linux默认是bash),如果指定了解释器,那么就将该脚本交给指定的解释器
比如a.run文件内容是这个:
BASH(1) USER COMMANDS BASH(1)
If the program is a file beginning with #!, the remainder of
the first line specifies an interpreter for the program.
The shell executes the specified interpreter on operating
systems that do not handle this executable format them-
selves. The arguments to the interpreter consist of a sin-
gle optional argument following the interpreter name on the
first line of the program, followed by the name of the pro-
gram, followed by the command arguments, if any.
http://stackoverflow.com/questions/23295724/how-does-linux-execute-a-file
Yes, linux requires file to be in some supported (registered) format and execute bit set in order to execute it. Most files in Linux has either ELF format, or "shebang" format (two first symbols of them are #! and then path to interpreter is written, used by bash, perl, python and most other scripts). Sometimes text files are allowed to execute as shell scripts, e.g. when you do ./script from bash (handled not by kernel, but by bash shell).