<div dir="ltr"><font><font face="georgia,serif">I think that your awk script will only print the last field of the last line<font> - remove the &quot;END&quot; pattern and just do &quot;{print $NF}&quot;</font><br></font></font></div>

<div class="gmail_extra"><br clear="all"><div>Pete Hardie<br>--------<br>Better Living Through Bitmaps</div>
<br><br><div class="gmail_quote">On Thu, Jan 17, 2013 at 6:47 AM, Steve Tynor <span dir="ltr">&lt;<a href="mailto:stevejunk@iintiip.com" target="_blank">stevejunk@iintiip.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

Consider using &quot;sitecopy&quot; (<a href="http://www.manyfish.co.uk/sitecopy" target="_blank">http://www.manyfish.co.uk/<u></u>sitecopy</a>) - I use it to keep various websites in sync w/ a local source tree. Think of it as a rsync-like utility built on top of ftp.  Google shows Ubuntu and Fedora packages available for normal installs.<span class="HOEnZb"><font color="#888888"><br>


<br>
Steve</font></span><div class="HOEnZb"><div class="h5"><br>
<br>
<br>
On 1/16/2013 10:37 PM, Chuck Payne wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Guys,<br>
<br>
I have a question, I have a very simple ftp script<br>
<br>
-----------------Script Begins------------------------<u></u>----<br>
<br>
#!/bin/bash<br>
# To find the latest files and upload them to process server<br>
<br>
FILE=$(ls -rt /chroot/home/fl/fl_sdirc | awk &#39;END{ print $NF }&#39;)<br>
ftp -n 192.168.0.8 &lt;&lt;+<br>
user user password<br>
binary<br>
put $FILE<br>
quit<br>
<br>
------------------Script Ends--------------------------<u></u>-------------<br>
<br>
But, I think my script is limited and might not have a way to check if<br>
files have been uploaded and might not get all the<br>
<br>
This line seems to only return one file<br>
<br>
ls -rt /chroot/home/fl/fl_sdirc | awk &#39;END{ print $NF }&#39;<br>
<br>
I did this as a test, I ran the following command<br>
<br>
touch touch1<br>
touch touch2<br>
touch touch3<br>
<br>
but only returns touch3, not touch1, touch2 where only seconds part.<br>
If that the case, my script will miss uploading files. Is there a<br>
better way of doing this? I know there is. just I&#39;m bit brain dead<br>
trying think of a good way. I could set up a log and move files, but<br>
that will break my KISS rule, or do I need that to make it work.<br>
<br>
</blockquote>
<br></div></div><div class="HOEnZb"><div class="h5">
______________________________<u></u>_________________<br>
Ale mailing list<br>
<a href="mailto:Ale@ale.org" target="_blank">Ale@ale.org</a><br>
<a href="http://mail.ale.org/mailman/listinfo/ale" target="_blank">http://mail.ale.org/mailman/<u></u>listinfo/ale</a><br>
See JOBS, ANNOUNCE and SCHOOLS lists at<br>
<a href="http://mail.ale.org/mailman/listinfo" target="_blank">http://mail.ale.org/mailman/<u></u>listinfo</a><br>
</div></div></blockquote></div><br></div>