LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   ftp script mod (https://www.linuxquestions.org/questions/linux-newbie-8/ftp-script-mod-753902/)

abhijeetdutta 09-09-2009 11:03 AM

ftp script mod
 
hi i am very much new on script.please do some modification on below script.


========================================================================

#!/bin/bash
cd /usr/sap/GD0/put/AbhiData
f_dir=`pwd`
f_date=`date --date="today" +%F | sed 's/-//g'`
f_name=abhidenialsapextended_delta$f_date.xml
f_host='ftp.abhi.com'
f_user='mkob'
f_passwd='2m'

ftp -n -v $f_host << FTP_EOF
user $f_user $f_passwd
bin
prompt
get $f_name
bye
FTP_EOF
====================================================================
modification which should be needed...on above script
======================================================================

1. AbhiData does not have updates after 8:00PM everyday. That is why script should run at 9:00 PM everyday and look for any delta file.
2. Download the new file from AbhiData to a temporary directory. The original file (which will be downloaded manually) is abhidenialSAPExtended.xml.zip but subsequent files will have a date stamp (ex: abhidenialsapextended_delta20080123.xml). The script should send an email alert if something goes wrong with the download (ex: can’t connect to FTP server, space issues, etc). Notes:
o AbhiData does not prepare new files every day so there will be days when there is no new file. If there is no new file then the script should end here without sending an email alert.
o The original abhidenialSAPExtended.xml.zip file will be loaded manually and does not need to be included in the script.
3. Copy the file from the temporary directory to the “in” directory renamed as “abhidenialsapextended.xml”. This should overwrite the existing “abhidenialsapextended.xml” file. There should always be a “abhidenialsapextended.xml” file in the in directory so the SAP batch job will not error out.
4. Move the file from the temporary directory to the “done” directory.
5. Weekly, a compare should be done between the files in the “done” directory and the files on the AbhiData server to make sure that no files are missing (files from AbhiData are “delta” loads – any missing files means our lists will be incomplete). An email alert would be sufficient – any missing files can be loaded manually.


Please do the needful.

Regards
Abhijeet

Tinkster 09-09-2009 12:21 PM

Please post your thread in only one forum. Posting a single thread in the most relevant forum will make it easier for members to help you and will keep the discussion in one place. This thread is being closed because it is a duplicate.
http://www.linuxquestions.org/questi...script-753900/


All times are GMT -5. The time now is 08:47 PM.