我想知道在不执行程序的情况下检查程序是否可以通过bash执行的最简单方法是什么?它至少应检查该文件是否具有执行权限,并且与当前系统具有相同的体系结构(例如,不是Windows可执行文件或其他不受支持的体系结构,如果系统是32位,则不是64位,...)。
file
这些文件上run的输出?
我想知道在不执行程序的情况下检查程序是否可以通过bash执行的最简单方法是什么?它至少应检查该文件是否具有执行权限,并且与当前系统具有相同的体系结构(例如,不是Windows可执行文件或其他不受支持的体系结构,如果系统是32位,则不是64位,...)。
file
这些文件上run的输出?
Answers:
看一下各种测试运算符(这是针对测试命令本身的,但是内置的BASH和TCSH测试或多或少是相同的)。
您会注意到-x FILE
说FILE存在并且授予了执行(或搜索)权限。
BASH,Bourne,Ksh,Zsh脚本
if [[ -x "$file" ]]
then
echo "File '$file' is executable"
else
echo "File '$file' is not executable or found"
fi
TCSH或CSH脚本:
if ( -x "$file" ) then
echo "File '$file' is executable"
else
echo "File '$file' is not executable or found"
endif
要确定文件类型,请尝试使用file命令。您可以解析输出以查看确切的文件类型。单词'o警告:有时file
将返回多行。这是在Mac上发生的情况:
$ file /bin/ls
/bin/ls: Mach-O universal binary with 2 architectures
/bin/ls (for architecture x86_64): Mach-O 64-bit executable x86_64
/bin/ls (for architecture i386): Mach-O executable i386
该file
命令根据操作系统返回不同的输出。但是,该词executable
将出现在可执行程序中,并且通常该体系结构也会出现。
将以上内容与我在Linux机器上获得的内容进行比较:
$ file /bin/ls
/bin/ls: ELF 64-bit LSB executable, AMD x86-64, version 1 (SYSV), for GNU/Linux 2.6.9, dynamically linked (uses shared libs), stripped
和一个Solaris盒:
$ file /bin/ls
/bin/ls: ELF 32-bit MSB executable SPARC Version 1, dynamically linked, stripped
在所有三个,你会看到这个词executable
和架构(x86-64
,i386
,或SPARC
用32-bit
)。
非常感谢,这似乎是正确的选择。在将其标记为我的答案之前,您能否请我指导我对“文件”执行哪种脚本外壳检查(即,哪种解析),以检查我是否可以执行程序?如果从总体上来说这样的测试太难了,我至少要检查它是linux可执行文件还是osX(Mach-O)
在我的头顶上,您可以在BASH中执行以下操作:
if [ -x "$file" ] && file "$file" | grep -q "Mach-O"
then
echo "This is an executable Mac file"
elif [ -x "$file" ] && file "$file" | grep -q "GNU/Linux"
then
echo "This is an executable Linux File"
elif [ -x "$file" ] && file "$file" | grep q "shell script"
then
echo "This is an executable Shell Script"
elif [ -x "$file" ]
then
echo "This file is merely marked executable, but what type is a mystery"
else
echo "This file isn't even marked as being executable"
fi
基本上,我正在运行测试,然后如果测试成功,则对file
命令的输出执行grep 。该grep -q
方法不输出任何输出,而是使用grep的退出代码来查看是否找到了该字符串。如果您的系统不运行grep -q
,则可以尝试grep "regex" > /dev/null 2>&1
。
同样,该file
命令的输出可能因系统而异,因此您必须验证它们是否可以在您的系统上工作。另外,我正在检查可执行文件位。如果文件是二进制可执行文件,但可执行文件位未打开,我将说它不是可执行文件。这可能不是您想要的。
[[
或只是[
?
[
实际上是一个外部命令,而不是外壳的内置命令。它通常位于/bin
目录中。这是test
命令的别名。
此处给出的解决方案在目录或符号链接(或两者)上均无效。在Linux上,您可以使用以下命令测试文件,目录和符号链接:
if [[ -f "$file" && -x $(realpath "$file") ]]; then .... fi
在OS X上,您应该能够使用homebrew和use安装coreutils grealpath
。
isexec
功能为了方便起见,您可以定义一个函数:
isexec() {
if [[ -f "$1" && -x $(realpath "$1") ]]; then
true;
else
false;
fi;
}
或者简单地
isexec() { [[ -f "$1" && -x $(realpath "$1") ]]; }
然后,您可以使用以下方法进行测试:
if `isexec "$file"`; then ... fi
return true
代替echo true
吗?
]]; }
但不确定您如何错过该分号),尽管它不会改变功能,但您甚至不需要在if
语句中打勾:)(我猜想它使突出显示不同,如果返回状态正确,则没有其他区别)
要测试文件本身是否ACL_EXECUTE
在任何权限集(用户,组,其他)中都设置了位,而无论它位于何处,即:e。即使在带有noexec选项的 tmpfs上 ,也可以使用来获取许可权字符串,然后检查其是否至少包含单个“ x”字母:stat -c '%A'
if [[ "$(stat -c '%A' 'my_exec_file')" == *'x'* ]] ; then
echo 'Has executable permission for someone'
fi
可以对比较的右手部分进行修改,以适应更具体的情况,例如*x*x*x*
,检查将文件放在通过exec选项安装的卷上时,是否所有类型的用户都应能够执行该文件 。
这可能不是很明显,但是需要一定的时间来测试可执行文件以在没有外部shell进程的情况下适当地调用它:
function tkl_is_file_os_exec()
{
[[ ! -x "$1" ]] && return 255
local exec_header_bytes
case "$OSTYPE" in
cygwin* | msys* | mingw*)
# CAUTION:
# The bash version 3.2+ might require a file path together with the extension,
# otherwise will throw the error: `bash: ...: No such file or directory`.
# So we make a guess to avoid the error.
#
{
read -r -n 4 exec_header_bytes 2> /dev/null < "$1" ||
{
[[ -x "${1%.exe}.exe" ]] && read -r -n 4 exec_header_bytes 2> /dev/null < "${1%.exe}.exe"
} ||
{
[[ -x "${1%.com}.com" ]] && read -r -n 4 exec_header_bytes 2> /dev/null < "${1%.com}.com"
}
} &&
if [[ "${exec_header_bytes:0:3}" == $'MZ\x90' ]]; then
# $'MZ\x90\00' for bash version 3.2.42+
# $'MZ\x90\03' for bash version 4.0+
[[ "${exec_header_bytes:3:1}" == $'\x00' || "${exec_header_bytes:3:1}" == $'\x03' ]] && return 0
fi
;;
*)
read -r -n 4 exec_header_bytes < "$1"
[[ "$exec_header_bytes" == $'\x7fELF' ]] && return 0
;;
esac
return 1
}
# executes script in the shell process in case of a shell script, otherwise executes as usual
function tkl_exec_inproc()
{
if tkl_is_file_os_exec "$1"; then
"$@"
else
. "$@"
fi
return $?
}
myscript.sh:
#!/bin/bash
echo 123
return 123
在Cygwin中:
> tkl_exec_inproc /cygdrive/c/Windows/system32/cmd.exe /c 'echo 123'
123
> tkl_exec_inproc /cygdrive/c/Windows/system32/chcp.com 65001
Active code page: 65001
> tkl_exec_inproc ./myscript.sh
123
> echo $?
123
在Linux中:
> tkl_exec_inproc /bin/bash -c 'echo 123'
123
> tkl_exec_inproc ./myscript.sh
123
> echo $?
123