On Sat, 18 Aug 2018 18:46:57 +0100 (BST)
jpff wrote:

> I have an entry in /etc/cron.daily
> 
> #!/bin/csh

If you haven't already seen the arguments against csh scripting, I
suggest you google 'csh programming considered harmful'.


I suggest replacing


 mv  KAM.cf KAM.cf.old
 /usr/bin/wget  <URL>

with 

 cp -p  KAM.cf KAM.cf.old
 /usr/bin/wget -N <URL> 
 
The latter requests that the server only sends the file if it has a
newer version.

Reply via email to