LinuxQuestions.org

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

abhijeetdutta 09-09-2009 10:56 AM

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


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

#!/bin/bash
cd /usr/sap/GD0/put/MKData
f_dir=`pwd`
f_date=`date --date="today" +%F | sed 's/-//g'`
f_name=mkdenialsapextended_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 mkdenialSAPExtended.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 MKData 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

TB0ne 09-09-2009 02:01 PM

Quote:

Originally Posted by abhijeetdutta (Post 3676047)
hi i am very much new on script.please do some modification on below script.


====================================================================
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 mkdenialSAPExtended.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 MKData 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

Ok..I will "do the needful"...

Write your own programs. Google can point you to thousands of scripting tutorials, and if you get stuck on a particular problem, post it, and we can help you. However, I doubt anyone here is going to write programs for you, for free, to your custom specifications.

A hand up is always here...a hand OUT isn't.

EricTRA 09-09-2009 02:05 PM

Well said TB0ne, well said indeed, no more needfull things to add.

TB0ne 09-09-2009 02:10 PM

Quote:

Originally Posted by EricTRA (Post 3676272)
Well said TB0ne, well said indeed, no more needfull things to add.

And as an added bonus, he's either posted it under another name, or one of his co-workers posted the EXACT SAME QUESTION in another forum.

EricTRA 09-09-2009 02:12 PM

Well, at least he/they is/are doing an effort to find a solution, although IMHO, if they follow your advice (google) they will get it a lot faster.


All times are GMT -5. The time now is 09:39 PM.