Chinaunix首页 | 论坛 | 博客
  • 博客访问: 179458
  • 博文数量: 42
  • 博客积分: 315
  • 博客等级: 二等列兵
  • 技术积分: 461
  • 用 户 组: 普通用户
  • 注册时间: 2010-10-16 11:55
文章分类

全部博文(42)

文章存档

2013年(29)

2012年(7)

2011年(6)

我的朋友

分类: LINUX

2013-05-09 11:36:28

#!/bin/bash
#encode begin
#                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                
#endcode end
#compile=false
#Author:birdman
#Create Date:2013-04-28
#Alter Date:2013-05-02
#Description:用于加密shell编译
#Usage:sh compile.sh
function Birdman_Init()
{
        source /etc/profile >> /dev/null 2>&1
        ScriptName=`basename $0`
        export pid="${pid}-->$ScriptName"
        LogFile=`echo ${ScriptName}|awk -F. '{print $1}'`.log
}


function Birdman_Compile()
{
for File in `find . -name "*.sh"|sed 's/\.\///'`;do
Compile_File=${File}.x
New_File=`echo $File|awk -F. '{print $1}'`
if grep -q "compile=true" $File;then
#Old_Md5=`awk '{if($2 ~ /'"${New_File}"'/)print}' ${Bash_VersionFile}|awk '{print $1}'`
Old_Md5=`awk '{if($2~"^'"${New_File}"'$")print}' ${Bash_VersionFile}|awk '{print $1}'`
sed -i "/${Old_Md5}/d" ${Bash_VersionFile}
shc -r -T -f $File
mv ${Compile_File} ${New_File}
md5sum ${New_File} >> ${Bash_VersionFile}
rm -rf ${File}.x.c

fi
done
}
main()
{
Bash_VersionFile="/var/www/html/BashVersion.txt"
if [ ! -f ${Bash_VersionFile} ];then
echo "Bash Version File is not exist"
exit 1
fi
        Birdman_Init
        Birdman_Compile
}
main


PS:
查看当前目录下所有的.sh 文件。如果文件中包含compile=true,则对脚本进行加密
阅读(904) | 评论(0) | 转发(0) |
0

上一篇:sed 的使用

下一篇:shell 脚本版本版本控制

给主人留下些什么吧!~~