- 论坛徽章:
- 1
|
目前是脚本取名11.sh 各种并接。求大神指定 谢谢 。 /opt/code/hyj/server 里更新了, 然后创建个hhzs_game_20170223_01 ,rsync 同步/opt/code/hyj/server 到 hhzs_game_20170223_01 目录。 如何把 hhzs_game_20170223_01打包成 hhzs_game_20170223_01.zig ,反复执行11.sh 02 会
一直生成hhzs_game_20170223_02 在打zip包 这里怎么判断 打包呢? 。
#!/bin/sh
echo -e "\033[44;37m 发布机 /opt/code/hyj/server 服务端做版本目录中。。。。 \033[0m"
time=`date +%Y%m%d`
adir="/opt/code/hyj"
bdir="/opt/code/hyj/ftp_server"
check()
{
read -p "please input (y/n):" yn
if [ "$yn" == "Y" ] || [ "$yn" == "y" ];then
echo "ok,continue"
elif [ "$yn" == "N" ] || [ "$yn" == "n" ];then
echo "oh,interrupt!"
exit
else
echo "I don't know what your choice is"
exit
fi
}
cd $bdir
if [ ! -d hhzs_game_${time}_01 ];then
echo "做目录!!"
check
mkdir -p $bdir/hhzs_game_${time}_01
rsync -vzrtopg --progress $adir/server/ $bdir/hhzs_game_${time}_01/
else
if [ ! -z $1 ];then
release=$1
check
mkdir -p $bdir/hhzs_game_${time}_${release}
rsync -vzrtopg --progress $adir/server/ $bdir/hhzs_game_${time}_${release}/
else
echo "./11.sh nu.(02 03 04 ........)"
ls -al $bdir
fi
fi
|
|