patch文件制作,排除符号链接的方法
摘要:
#!/bin/sh#parameter check# $1 is regarded as the original folder# $2 is regarded as the latest folder# $3 is regraded as the patch fileif [ $# -lt 3 ];thenecho "usage:$0 original_dir dest_dir patch_file"exit -1;fi#variable declareori_dir=$1new_dir=$2patch_file=$3#remove the old patch filei 阅读全文
posted @ 2013-06-29 09:44 eric.geoffrey 阅读(712) 评论(0) 推荐(0) 编辑