![]() |
|
|
google unix.com
|
|||||||
| Forums | Casino | Register | Forum Rules | Links | Albums | FAQ | Members List | Search | Today's Posts | Mark Forums Read |
| UNIX for Dummies Questions & Answers If you're not sure where to post a UNIX or Linux question, post it here. All UNIX and Linux newbies welcome !! |
More UNIX and Linux Forum Topics You Might Find Helpful
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| create a shell script that calls another script and and an awk script | magikminox | Shell Programming and Scripting | 0 | 06-26-2008 02:50 AM |
| help me in sending parameters from sqlplus script to unix shell script | Hara | Shell Programming and Scripting | 2 | 01-29-2008 02:31 PM |
| Shell Script: want to insert values in database when update script runs | ring | Shell Programming and Scripting | 1 | 10-25-2007 03:06 AM |
| after server disconnect ftp tranfer...... | happyv | Shell Programming and Scripting | 2 | 12-20-2006 08:47 PM |
| How can I tranfer an OS/ Unix (from old HD to new HD / include all files saved ) | Vietnam | UNIX for Dummies Questions & Answers | 0 | 08-04-2006 11:27 PM |
![]() |
|
|
Submit Tools | LinkBack | Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|||
|
FTP tranfer script
Hello everyone
I have two UNIX servers and every day I want to automatically move files from server2 to server1 every day Server1 Folder /mkg/billing Server2 Folder /lh2/kly/billing I need a FTP file transfer script, plus I don’t need the same files from server2 move every day only the files that was created that day on server2 thanks |
| Sponsored Links |
|
|||
|
Code:
find /path/to/files/on/server2 -type f -mtime -1 > tmpfile
awk ' BEGIN { print "OPEN server1"
print "USER yourusername yourpassword"
print "cd /path/to/files/on/server1"
print "lcd /path/to/files/on/server2"
print "verbose "
}
{ print "put ", $0 }
END { print "bye" } ' tmpfile | ftp -n > /path/to/ftp/log
|
|||
| Google The UNIX and Linux Forums |
![]() |
| Bookmarks |
| Tags |
| None |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|