Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
将 shell 脚本转换为二进制文件有哪些优点/缺点?
我已经这样做了,当我在另一个 linux 上运行二进制文件时,它没有运行。
它给出了这个错误 version 'GLIBC_2.14' not found (required by ./test.sh.x)
version 'GLIBC_2.14' not found (required by ./test.sh.x)
在另一台服务器上,它给出了这个./test.sh.x: Invalid argument.
./test.sh.x: Invalid argument.
该脚本仅执行echo "hello"
echo "hello"
唯一的“优点”是混淆,如您问题中的示例所示,缺点很多。
如果您使用它来隐藏秘密(密码),无论如何它们都很容易提取。