- 论坛徽章:
- 0
|
一个很不错的ftp脚本,但是我不会改哦
原帖由 "liuxuexin_xxlhz" 发表:
#!/bin/sh
# ftpget.sh
SPSC_SERVER=192.168.0.1
FTP_USERNAME=11
FTP_PASSWORD=11
FILE_PRENAME=mobile
Log ()
{
echo [`date '+%Y%m%d %H:%M:%S'` $$] $*
}
if [ "-?" = "$1" ]
then echo usage: ftpgetsample.sh [-d dest_path]
echo dest_path: The local path in which files are stored, the recv path is default.
echo A sample: ftpget.sh -d /chroot/gateway
else
exec>>/chroot/gateway/log/recv`date '+%Y%m%d'`.log 2>&1
if [ "-d" = "$1" ]
then DEST_PATH=$2
else DEST_PATH=/chroot/gateway/
fi
cd $DEST_PATH
Log "Begin to get filelist..."
# You can NOT use mget and mdelete commands of ftp to handle this issue,
# because when you begin to execute the mdelete command,
# it's possible that a new file have been written into the disk,
# just before the mdelete command start and after mget command had been finished.
# as a result, firstly, you should get the file list,
# secondly, get and delete each file in the list
# Step 1: Get the file list from FTP server
ftp -i -n $SPSC_SERVER <<MACRO_END1
user $FTP_USERNAME $FTP_PASSWORD
bin - ls *$FILE_PRENAME.* filelist.$$.txt #改成txt文件
复制代码原帖由 "liuxuexin_xxlhz" 发表:
bye
MACRO_END1
if [ ! -s filelist ];then
Log "No file received......"
rm -f filelist
exit
fi - comm -1 filelist.$$.txt filelist.txt #比较新文件filelist.$$.txt与老文件filelist.txt
复制代码原帖由 "liuxuexin_xxlhz" 发表:
# # Step 2: Get and delete each file in circle.
# "cut -b56-" means get the filename from 56th bytes in each line in filelist file,
# you can adjust the number by yourself after read the filelist file.
# In our testing environment of Turbo Linux and Red Hat Linux, the number is set to 56
# In our testing environment of Solaris and AIX, the number is set to 1
Log "transfering start..."
for _FILENAME in `more filelist|cut -b56-` ; do
ftp -i -n $SPSC_SERVER <<MACRO_END2
user $FTP_USERNAME $FTP_PASSWORD
bin
get $_FILENAME $_FILENAME.tmp - # delete $_FILENAME 不要删除文件
复制代码原帖由 "liuxuexin_xxlhz" 发表:
bye
MACRO_END2
mv $_FILENAME.tmp $_FILENAME
Log "get $_FILENAME ok"
gunzip $_FILENAME
Log "gunzip $_FILENAME ok"
. /chroot/gateway/bin/subsync.sh
done
rm -f filelist
Log "transfering completed." - mv filelist.$$.txt filelist.txt
复制代码原帖由 "liuxuexin_xxlhz" 发表:
# Step 3: Handle files based on your business logic
# The following handle program should be written by yourself !!!
#for _FILENAME in `more filelist|cut -b56-` ; do
# java HandleUnsubRecord ......
#done
fi |
|