shell 實用腳本

功能 將當前目錄下文件拷貝至另外一目錄下,且拷貝前先備份spa

#!/bin/sh
#腳本功能 
#覆蓋文件前先備份
cfsuffix=$(date +%Y%m%d);    #備份文件後綴
if [ $# -lt 2 ]; then                        #輸入參數說明
  echo "error...need args\n"
  echo "eg:path1 path2"
  echo "path1 files backup and copy to path2"
  exit 1
else
    path1=$1;
    path2=$2;
    echo $path1;
    echo $path2;
  #if [ [ -d "$path1" ] && [ -d "$path2" ] ]; then
  if [ -d "$path1" -a -d "$path2" ]; then
        ls $path1 | awk -F'[ ]' '{print $1}' | while read filename
        do
            sfile=$path1'/'$filename;    #源文件
            pfile=$path2'/'$filename; #需備份文件 
            cfile=$path2'/'$filename'.'$cfsuffix;    #備份後文件
            if [ -f $sfile ]; then
                if [ -f $pfile ]; then
                    cp $pfile $cfile &&  a=1 || a=0;
                    if [ $a -eq 1 ]; then
                        echo $filename "backup success!";
                        cp $sfile $path2;
                    else 
                        echo $filename "backup error!"
                    fi
                else
                    echo $pfile "not find!";
                    cp $sfile $path2;
                fi
            fi
        done
  else
    echo "error...args path not find!";
  fi
fi
相關文章
相關標籤/搜索