one time automated ftp session


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers one time automated ftp session
# 1  
Old 09-24-2003
Question one time automated ftp session

How can an automated script be setup to run at a later time in the day. cron runs recurring tasks. I am interested in a one time process.

I want to back up a number of files whenever I make changes to an application and ftp for backup purposes. The script to automate the zipping of files has been completed. The next goal is to automate the zip and ftp process after hours (say 0200 the next morning after I run the batch process at 1700 before I leave work), and finally upon completion, remove the local file.

Is the following format for ftp automation process close to the below...
put /backupdir/backupfile -h 123.45.678.90 -u <user>-p <password> -d /remotedir/
# 2  
Old 09-24-2003
As with any site, be mindful of the rules, one of which is to use the search function before posting your question. Chances are that someone has already posed your question and that question has most likely already been answered. This is especially true with automated FTP!!

Search method came up with 581 hits on FTP!! Smilie
Hint: Use a Here document to automate your FTP.
[edit]
Because I gave this to a similar post, I thought I would be fair....

ftp_func () {
ftp -v -n $TO_HOST << ENDFTP
user $USERNAME $PASSWORD
ascii
prompt off
hash on
lcd $FILE_DIR
get $FILE_NAME
bye
ENDFTP
}

For automating a 1 time job see man at

Last edited by google; 09-24-2003 at 01:47 PM..
 
Login or Register to Ask a Question

Previous Thread | Next Thread

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Automated FTP

Hello,I just know the basics of scripting & I need a script to automate ftp since I use it quite often. I use ftp to transfer different kind of files and everytime the source & the destination directories are different for transferring files, so can anyone help me out on this urgently.. (2 Replies)
Discussion started by: mohit_02mar
2 Replies

2. Solaris

launching an automated telnet session using dtterm

Hi , I have to write a shell script which would be invoked from a Java program. The job of this script would be to launch a telnet session i was using dtterm for the same and the expect command to automate that. spawn dtterm -e telnet <server ip address> expect "Username:" send... (0 Replies)
Discussion started by: rajeev_solanki
0 Replies

3. Shell Programming and Scripting

Automated FTP script using .netrc to multiple FTP servers

Hi all, I'm using the following script to automated ftp files to 1 ftp servers host=192.168.0.1 /usr/bin/ftp -vi >> $bkplog 2>&1 <<ftp open $host bin cd ${directory} put $files quit ftp and the .netrc file contain machine 192.168.0.1 login abc... (4 Replies)
Discussion started by: varu0612
4 Replies

4. IP Networking

Automated FTP task

Every day i ftp tar.gz a file from the production server to a back up machine.. This task creates way to much traffic on the network at the end of the day and puts and undo load on the production machine during operation hours. i would like to create a script that would automatically fire off the... (36 Replies)
Discussion started by: LowOrderBit
36 Replies

5. Shell Programming and Scripting

Automated FTP

I want to do Automated FTP from linux client to LINUX server using a shell script after every one hour. And copies last most updated file from Linux server. OR You can say that whenever files get modified on LINUX server so it also copies on my LINUX client. Linux SERVER path=... (4 Replies)
Discussion started by: wakhan
4 Replies

6. Shell Programming and Scripting

automated ftp.

Hi I am trying to delete some specific files ( files other than created today) from the server on a cron basis. I wrote a small script, but I am stuck up in how to delete only specific files. #!/usr/bin/expect -f set IP set timeout -1 spawn ftp $IP expect ): send "username\n"... (10 Replies)
Discussion started by: sangfroid
10 Replies

7. UNIX for Advanced & Expert Users

Automated FTP

My requiremnet is to write a FTP script which will ftp a file to a specified ftp url. How can I automate the process usnig the unix cron. (11 Replies)
Discussion started by: shauche
11 Replies

8. UNIX for Dummies Questions & Answers

FTP automated?

If I wanted a machine to put a specific file onto another OS far across the internet via FTP - and I wanted to do it automatically not user intervented, how would I do that? Use the PUT command? The file name and position never changes, it gets overwritten and the system on the other end... (6 Replies)
Discussion started by: n9ninchd
6 Replies
Login or Register to Ask a Question