赞
踩
导出 html 和 创建 git 仓库 这方面就不具体展开了,这里要添加一个新的文件**`version.txt``** , 这个文件内容主要存放当前原型的版本号
这里给出脚本, 这个脚本的作用主要用来创建历史文件夹和文件复制
#!/bin/bash # encoding: utf-8.0 function main() { echo '当前版本信息: '$1 if [ -d ./$1 ];then echo "文件夹存在" cp -rf /Users/huifer/Desktop/lh/git_repo/* $1 else echo "文件夹不存在,创建文件夹" mkdir ./$1 cp -rf /Users/huifer/Desktop/lh/git_repo/* $1 fi } # 读取版本信息 sys_info=$(cat /Users/huifer/Desktop/lh/git_repo/version.txt) main $sys_info
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。