On Sun, Jul 26, 2015 at 07:07:45PM -0700, Assi Friedman wrote:
Found it. Is there a way to wget or ftp the file automatically?
Of course there is; you can call 'wget' from a cron job. Typically you'd do so in a script that handles the error condition in some way if the get fails. - Brian
eg
/usr/bin/wget -N -nd -q \ --ftp-user=username \ --ftp-password=password \ ftp://portal.ampr.org/encap.txt
(substitute in the proper values for 'username' and 'password')