Yeah ,both AndyBo's and ElgisRamon's methord are useful .<br>No I write the exact sample for you . It works fine in<br>my Solaris2.5 platform .<br><br>Step 1:<br>In your corresponding crontab file , add this line:<br>0 5 * * * cp ftputfile .netrc;ftp -i HP-machine>>ftpputlog<br>#It will work at 5am each day and record your ftp processing<br>to ftpputlog file<br><br>Step 2: Write the autorunning ftpputfile:<br># Find files created in the last 24 hrs, and put them in an #archive.<br>FILES="`find . -type f -mtime -1 -print`"<br><br>machine Your-HP-machine<br>login username<br>password your-password-in-HP<br>macdef init<br><br>bin<br>hash<br>cd /HPmachine-your-dir<br>for File in $FILES<br> do<br> put $File $File<br> done<br>quit<br><br>However , I'd like to compress and tar those files first and<br>then put them to the backup machine . <br>Notice ,you can adjust the ftpputfile to match your need .<br><br>Hope it helpful for you,<br><br>James<br>