#!/bin/ksh
################################################
#File Name mvlsr.sh
#Procedure Class? Unix shell program
#Data Form YYYY/MM/DD
#Description 1.Check EDA data backup script
#
#Ver Date Author Description
# ===== ========== ===================== ===================================================
#1.00 2009/05/17 ivo Stein yang Create#
################################################################################
svip=10.10.2.91
netstat -in | grep -i -q $svip
if [ $? -ne 0 ]; then
exit -1
fi
filedate=`date +"20%y%m%d"`
lsr=/LCD/LSR/JPG/Image
cd /BKFILE/LSR/JPG/Image
mkdir ${filedate}
cd $lsr
find ./ -mtime +7 -print |cut -c3-100 >/tmp/lsr/1.bk
while read filename
do
mv $filename /BKFILE/LSR/JPG/Image/${filedate}
echo $filename >> /tmp/lsr/${filedate}.txt
done < /tmp/lsr/1.bk
exit 0
#shell end
##################################################################################
移动文件而已,盗版了某前辈的思路,哈哈