使用 shc 对 Linux shell 脚本加密. shc是一个专业的加密shell脚本的工具.它的作用是把shell脚本转换为一个可执行的二进制文件: 安装: tar zxvf shc-3.8.tgz cd shc-3.8 make test make make test make strings make install 使用方法: shc -r -f script-name 运行后会生成两个文件,script-name.x 和 script-name.x.c. 其中script-name.x是加密后的可执行的二进制文件;用./script-name即可运行,script-name.x.c是生成script-name.x的原文件(c语言).